#aboutHero {
    position: relative;
    z-index: 1;
}

#aboutContent {
    position: relative;
    z-index: 5;
    margin-top: -78px;
    overflow-x: hidden;
    overflow-x: clip;
}

.about-page-section {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-bottom: 60px;
    background-color: transparent;
    overflow-x: hidden;
    overflow-x: clip;
}

.about-page-card {
    --about-card-padding-inline: 42px;
    --about-feature-content-width: 46%;
    --about-icon-ring-size: 112px;

    position: relative;
    z-index: 2;
    width: 100%;
    background-color: var(--lp-white);
    border-radius: 10px;
    padding: 44px var(--about-card-padding-inline) 64px;
    overflow: visible;
    box-shadow: none;
}

.about-page-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 74px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.12);
    clip-path: inset(-70px -70px 42px -70px);
    pointer-events: none;
    z-index: -1;
}

.about-page-map {
    position: absolute;
    left: 50%;
    top: 54%;
    width: 100vw;
    max-width: 100vw;
    height: 1120px;
    background-image: url("../../../images/style/world-map-light.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100vw auto;
    opacity: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.about-page-header {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-page-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--lp-accent);
    font-size: 14px;
    font-weight: 600;
}

.about-page-title {
    position: relative;
    display: inline-block;
    margin: 0 0 20px;
    padding-bottom: 14px;
    color: var(--lp-black);
    font-size: clamp(20px, 1.7vw, 27px);
    font-weight: 600;
    line-height: 1.45;
}

.about-page-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 72px;
    height: 2px;
    background-color: var(--lp-accent);
    border-radius: 20px;
    transform: translateX(-50%);
}

.about-page-description {
    max-width: 720px;
    margin: 0 auto;
    color: #5E5E5E;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}

.about-page-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin-top: 58px;
}

.about-page-feature {
    --about-feature-color: var(--lp-accent);

    position: relative;
    min-height: 176px;
    display: flex;
    align-items: flex-start;
}

.about-page-feature-primary {
    --about-feature-color: var(--lp-primary);
}

.about-page-feature-secondary {
    --about-feature-color: var(--lp-secondary);
}

.about-page-feature-accent {
    --about-feature-color: var(--lp-accent);
}

.about-page-feature-right {
    justify-content: flex-end;
}

.about-page-feature-left {
    justify-content: flex-start;
}

.about-page-feature-content {
    position: relative;
    z-index: 3;
    width: var(--about-feature-content-width);
    min-height: 176px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background-color: transparent;
}

.about-page-feature-left .about-page-feature-content {
    flex-direction: row-reverse;
}

.about-page-feature-icon-wrap {
    flex-shrink: 0;
}

.about-page-feature-icon-ring {
    position: relative;
    width: var(--about-icon-ring-size);
    height: var(--about-icon-ring-size);
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-page-feature-icon-ring::before {
    content: "";
    position: absolute;
    inset: 2px;
    border: 1px solid var(--lp-black);
    border-radius: 50%;
    background-color: transparent;
    clip-path: inset(0 50% 0 0 round 999px);
    transform: scale(1.02);
    transition:
        clip-path 0.45s ease,
        transform 0.45s ease;
}

.about-page-feature-left .about-page-feature-icon-ring::before {
    clip-path: inset(0 0 0 50% round 999px);
}

.about-page-feature:hover .about-page-feature-icon-ring::before {
    clip-path: inset(0 0 0 0 round 999px);
    transform: scale(1.06);
}

.about-page-feature-icon {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    background-color: transparent;
    border: 2px solid var(--about-feature-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.about-page-feature-text {
    flex: 1;
    padding-top: 6px;
    text-align: right;
}

.about-page-feature-text h3 {
    margin: 0 0 14px;
    color: var(--lp-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.about-page-feature-text p {
    margin: 0;
    color: #5E5E5E;
    font-size: 12.7px;
    font-weight: 400;
    line-height: 1.85;
}

@media (max-width: 1200px) {
    .about-page-card {
        --about-card-padding-inline: 34px;
        --about-feature-content-width: 50%;
        padding-inline: var(--about-card-padding-inline);
    }

    .about-page-map {
        height: 1040px;
        background-size: 100vw auto;
    }
}

@media (max-width: 992px) {
    #aboutContent {
        margin-top: -70px;
    }

    .about-page-section {
        padding-bottom: 40px;
    }

    .about-page-card {
        --about-card-padding-inline: 26px;
        --about-feature-content-width: 100%;
        --about-icon-ring-size: 104px;

        padding: 38px var(--about-card-padding-inline) 54px;
    }

    .about-page-card::before {
        height: 68px;
    }

    .about-page-map {
        top: 52%;
        height: 940px;
        background-size: 100vw auto;
    }

    .about-page-features {
        gap: 30px;
        margin-top: 48px;
    }

    .about-page-feature {
        min-height: auto;
        justify-content: stretch;
    }

    .about-page-feature-content {
        width: 100%;
        min-height: auto;
        gap: 16px;
    }

    .about-page-feature-icon {
        width: 70px;
        height: 70px;
    }

    .about-page-feature-icon img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    #aboutContent {
        margin-top: -56px;
    }

    .about-page-section {
        padding-bottom: 30px;
    }

    .about-page-card {
        --about-card-padding-inline: 22px;
        --about-icon-ring-size: 96px;

        padding: 34px var(--about-card-padding-inline) 46px;
        overflow: visible;
    }

    .about-page-card::before {
        height: 62px;
    }

    .about-page-map {
        display: block;
        top: 50%;
        width: 100vw;
        max-width: 100vw;
        height: 100%;
        min-height: 820px;
        background-size: 100vw auto;
    }

    .about-page-title {
        font-size: 21px;
    }

    .about-page-description {
        font-size: 13px;
        line-height: 1.9;
    }

    .about-page-features {
        gap: 24px;
        margin-top: 38px;
    }

    .about-page-feature-content,
    .about-page-feature-left .about-page-feature-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .about-page-feature-icon-ring::before,
    .about-page-feature-left .about-page-feature-icon-ring::before {
        clip-path: inset(0 50% 0 0 round 999px);
    }

    .about-page-feature-icon {
        width: 64px;
        height: 64px;
    }

    .about-page-feature-icon img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    #aboutContent {
        margin-top: -48px;
    }

    .about-page-section {
        padding-bottom: 24px;
    }

    .about-page-card {
        --about-card-padding-inline: 16px;
        --about-icon-ring-size: 86px;

        padding: 28px var(--about-card-padding-inline) 38px;
        border-radius: 10px;
    }

    .about-page-card::before {
        height: 58px;
        border-radius: 10px 10px 0 0;
    }

    .about-page-map {
        min-height: 740px;
        background-size: 100vw auto;
    }

    .about-page-eyebrow {
        font-size: 13px;
    }

    .about-page-title {
        font-size: 20px;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .about-page-title::after {
        width: 58px;
    }

    .about-page-description {
        font-size: 13px;
    }

    .about-page-feature-content,
    .about-page-feature-left .about-page-feature-content {
        gap: 14px;
    }

    .about-page-feature-icon {
        width: 58px;
        height: 58px;
    }

    .about-page-feature-icon img {
        width: 30px;
        height: 30px;
    }

    .about-page-feature-text h3 {
        font-size: 15px;
    }

    .about-page-feature-text p {
        font-size: 12.5px;
    }
}