.component-services {
    display: flex;
}

.component-services > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 2em;   
    width: 25%;
}

.component-services > div:first-child > span:first-child {
    margin-top: 3em;
}

.component-services > div:first-child > div {
    padding-left: 2em;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.component-services > div:first-child > div > ul {
    list-style: none;
    font-weight: normal;
    color: var(--foreground-color);
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.component-services > div:last-child {
    width: 75%;
}

.component-services > div:last-child > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .5em;   
    padding: 2em;
}

.component-services > div:last-child > div > h4 {
    color: var(--foreground-color);
    font-weight: normal;
    font-size: 22px;
    text-align: center;
}

.component-services > div:last-child > div > div {
    display: flex;
    column-gap: .5em;
    row-gap: 2em;
    justify-content: space-between;
    flex-wrap: wrap;
}

.component-services > div:last-child > div > div > article > h5 {
    color: var(--foreground-color-2);
    text-align: center;
    font-size: 18px;
}

.component-services > div:last-child > div > div > article > a {
    color: var(--foreground-color-4);
    width: 100%;
    font-size: 45px;
    text-decoration: none;
    text-align: right;
}

.component-services > div:last-child > div > div > article > p {
    color: var(--foreground-color);
    overflow: hidden;
    text-align: center;
    line-clamp: 14;
    -webkit-line-clamp: 14;
}
