/* Footer Careers Section */
.footer-careers {
    padding: 140px 0;
    @media(max-width: 767px) {
        padding: 70px 0;
    }
}

.footer-careers .fc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    @media (max-width: 767px) {
        margin-bottom: 30px;
    }
}

.footer-careers .fc-subtitle {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-careers .fc-header .fc-link {
    @media (max-width: 767px) {
        display: none;
    }
}

.footer-careers .fc-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-careers .fc-link svg {
    margin-left: 5px;
}

.footer-careers .fc-rows {
    display: flex;
    flex-direction: column;
}

.footer-careers .fc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-dark-blue);
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    @media(max-width: 767px) {
        padding: 30px 0;
    }
}

.footer-careers .fc-row.fc-type-image {
    @media(max-width: 767px) {
        gap: 20px;
    }
}

.footer-careers .fc-row:first-child {
    border-top: 1px solid var(--color-dark-blue);
}

.footer-careers .fc-col-title {
    flex: 0 0 70%;
}

.footer-careers .fc-type-image .fc-col-title,
.footer-careers .fc-type-text .fc-col-title {
    flex: 0 0 60%;
}
.footer-careers .fc-type-image .fc-col-content,
.footer-careers .fc-type-text .fc-col-content {
    flex: 1 1 40%;
}

.footer-careers .fc-row-title {
    padding: 27px 0 42px;
    text-transform: uppercase;
    @media(max-width: 767px) {
        padding: 0;
    }
    * {
        text-transform: uppercase;
    }
}

.footer-careers .fc-type-link .fc-row-title {
    color: var(--color-light-blue);
    text-transform: uppercase;
}

.footer-careers .fc-col-content {
    flex: 1 1 30%;
    display: flex;
    justify-content: flex-end;
}

.footer-careers .fc-col-content>.o-media {
    position: relative;
    height: 0;
    padding-bottom: 169px !important;
    width: 100%;
    max-width: 325px;
    @media (min-width: 1500px) {
        max-width: 440px;
    }
    @media (max-width: 767px) {
        max-width: none;
        padding-bottom: 172px !important;
    }
}

.footer-careers .fc-image {
    max-width: 100% !important;
    height: auto;
    object-fit: cover;
    display: block;
    height: 100% !important;
    width: 100% !important;
}

.footer-careers .fc-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 325px;
    text-align: left;
    margin-left: auto;
    @media(min-width: 1500px) {
        max-width: 440px;
    }
    @media(max-width: 767px) {
        max-width: 100%;
    }
}

.footer-careers .fc-text p {
    margin: 0;
}

.footer-careers .fc-large-link {
    transition: transform 0.3s ease;
    --bs-icon-link-transform: translate3d(0.3125rem, -0.3125rem, 0);
    color: var(--color-red);
    width: 82pxpx;
    height: 82.5px;
    @media (max-width: 767px) {
        width: 40px;
        height: 40px;
    }
}

.footer-careers .fc-large-link svg {
    width: 100%;
    height: 100%;
}

.footer-careers .fc-large-link:hover,
.footer-careers .fc-row:hover .fc-large-link {
    transform: var(--bs-icon-link-transform, translate3d(.3125rem, 0, 0));
}

.fc-footer {
    @media(min-width: 768px) {
        display: none
    }
    margin-top: 40px;
}


@media (max-width: 767px) {
    .footer-careers .fc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-careers .fc-row:not(.fc-type-link) {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-careers .fc-col-title,
    .footer-careers .fc-col-content {
        flex: 0 0 100%;
        width: 100%;
        padding-right: 0;
    }

    .footer-careers .fc-type-link .fc-col-title {
        flex: 0 0 calc(100% - 101px);
        width: calc(100% - 101px);
    }
    .footer-careers .fc-type-link .fc-col-content {
        flex: 0 0 91px;
        width: 91px;
        justify-content: end;
    }

    .footer-careers .fc-col-content {
        justify-content: flex-start;
    }

    .footer-careers .fc-text {
        margin-left: 0;
    }
    .fc-footer {
        margin-top: 40px;
    }
}