.info-cards {
    gap: 33px;
    border-left: none;
    border-right: none;
    width: 100%;
    background-image:
        /* Top Line */
        repeating-linear-gradient(90deg, #D4D4D8, #D4D4D8 5px, transparent 5px, transparent 10px),
        /* Bottom Line */
        repeating-linear-gradient(90deg, #D4D4D8, #D4D4D8 5px, transparent 5px, transparent 10px);

    /* Set size for both: 100% width and 1px height */
    background-size: 100% 1px, 100% 1px;
    /* Position one at the top and one at the bottom */
    background-position: top, bottom;
    background-repeat: no-repeat;
}

.info-cards__item:not(:last-child) {
    background-image: repeating-linear-gradient(0deg, #D4D4D8, #D4D4D8 5px, transparent 5px, transparent 10px);
    background-size: 1px 100%;
    background-position: right;
    background-repeat: no-repeat;
}

.info-cards__content {
    padding: 64px 33px 64px 0;
    line-height: 36px;
}

.info-cards h3 {
    font-size: var(--fs-24);
    line-height: 36px;
    letter-spacing: 0;
}

.info-cards__icon {
    width: 35px;
    height: 35px;
    margin-bottom: 28px;
}

.info-cards__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-cards__description {
    line-height: 24px;
    font-size: var(--fs-16);
}

/* 
HORIZONTAL 
*/
.info-horizontal .info-cards {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 32px 0;
    align-items: stretch;
    padding-top: 32px;
}

.info-horizontal .info-cards__item {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.info-horizontal .info-cards__item::after {
    content: "";
    display: block;
    background-image:
        /* Top Line */
        repeating-linear-gradient(90deg, #D4D4D8, #D4D4D8 5px, transparent 5px, transparent 10px),
        /* Bottom Line */
        repeating-linear-gradient(90deg, #D4D4D8, #D4D4D8 5px, transparent 5px, transparent 10px);

    background-size: 100% 1px, 100% 1px;
    background-position: top, bottom;
    height: 1px;
    position: relative;
    top: 32px;
}

.info-horizontal .info-cards__item:nth-child(even) {
    /* background-image: linear-gradient(to right, #D4D4D8 50%, transparent 50%);
    background-repeat: repeat-x; */
    background-image: none;
}

.info-horizontal .info-cards__content {
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex: 1;
}

.info-horizontal .info-cards__item:nth-child(even) .info-cards__content {
    padding-right: 0;
}

.info-horizontal .info-cards__item:nth-child(odd) .info-cards__content {
    padding-left: 0;
}

.info-horizontal .info-cards_content-wrap {
    gap: 8px;
}

.info-horizontal .info-cards__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-brand);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding: 12px;
}

.info-horizontal .info-cards__icon img {
    width: 35px;
    height: 35px;
}

.info-horizontal .info-cards__description {
    margin-bottom: var(--space-8);
}

.info-cards__link {
    color: var(--color-black);
    font-weight: var(--fw-semibold);
    line-height: 24px;
    margin-top: auto;
    width: fit-content;
}

.info-horizontal .info-cards__item:last-child::after {
    display: none;
}

.info-horizontal .info-cards__item:nth-last-child(2):nth-child(odd)::after {
    display: none;
}

.info-cards__heading-content {
    width: 640px;
    margin: auto;
}

.single-career .info-horizontal .info-cards__icon {
    display: none;
}

.single-career .info-horizontal .info-cards__description ul {
    margin-top: 0;
    list-style-type: square;
}

.single-career .info-horizontal .info-cards__description ul li,
.single-career .info-horizontal .info-cards__description p {
    font-size: var(--fs-20);
    line-height: 32px;
}

.single-career .info-horizontal .info-cards__heading,
.single-career .info-horizontal .res-align-left {
    align-items: baseline;
}

@media screen and (max-width: 768px) {
    .info-cards {
        flex-direction: column;
        gap: 24px;
    }

    .info-cards__item:not(:last-child) {
        border-right: none;
        background-image: repeating-linear-gradient(90deg,
                #D4D4D8,
                #D4D4D8 5px,
                transparent 5px,
                transparent 10px);
        background-size: 100% 1px;
        background-position: bottom;
        background-repeat: no-repeat;
        padding-right: 0;
    }

    .info-cards__content {
        padding: 32px 0;
    }

    .info-cards__icon {
        margin-bottom: 12px;
    }

    .info-horizontal .info-cards__item,
    .info-horizontal .info-cards__item:nth-child(even) {
        background-image: none;
        padding-left: 0;
    }

    .info-horizontal .info-cards__content {
        padding: 0 !important;
    }

    .info-cards__heading-content {
        width: 100%;
        font-size: var(--fs-16);
        line-height: 24px;
    }

    .info-horizontal .gap-40 {
        gap: 32px;
    }

    .single-career .info-horizontal .info-cards__description ul li,
    .single-career .info-horizontal .info-cards__description p {
        font-size: var(--fs-16);
        line-height: 24px;
    }
}