.about {
    position: relative;
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    padding: 1rem;
    overflow-x: hidden;
    color: #fff;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(
            circle at center,
            rgba(34, 103, 92, 0.22),
            transparent 55%
        ),
        #093533;
}

.about__background-mark {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 0;
    height: 0;
    opacity: 0.08;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.about__triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-right: 25vh solid transparent;
    border-bottom: 52vh solid rgba(42, 122, 109, 0.55);
    border-left: 25vh solid transparent;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
    transform: translate(-50%, -50%);
}

.about__triangle::before {
    position: absolute;
    top: 10vh;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    border-right: 18vh solid transparent;
    border-bottom: 38vh solid rgba(34, 103, 92, 0.5);
    border-left: 18vh solid transparent;
    transform: translateX(-50%);
}

.about__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
    background: rgba(9, 53, 51, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
}

.about__container::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 105px;
    height: 4px;
    content: "";
    background: #fdcf5b;
    border-radius: 0 0 999px 999px;
    transform: translateX(-50%);
}

.about__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0.75rem;
    color: #fdcf5b;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    background: rgba(253, 207, 91, 0.08);
    border: 1px solid rgba(253, 207, 91, 0.2);
    border-radius: 999px;
}

.about__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
}

.about__description {
    max-width: 620px;
    margin: 0.6rem auto 1.25rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    line-height: 1.45;
}

.about__section {
    margin-top: 0.65rem;
    padding: 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
}

.about__section:first-of-type {
    margin-top: 0;
}

.about__section--featured {
    background: rgba(253, 207, 91, 0.045);
    border-color: rgba(253, 207, 91, 0.14);
}

.about__section--author {
    background: rgba(255, 255, 255, 0.025);
}

.about__section-heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}

.about__section-number {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #093533;
    font-size: 0.68rem;
    font-weight: 800;
    background: #fdcf5b;
    border-radius: 10px;
}

.about__section-label {
    display: block;
    margin-bottom: 0.12rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about__section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.about__people-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.about__person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    min-height: 62px;
    padding: 0.65rem 0.75rem;
    background: rgba(9, 53, 51, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.about__person:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(253, 207, 91, 0.18);
    transform: translateY(-2px);
}

.about__person--primary {
    min-height: 76px;
    background: rgba(9, 53, 51, 0.78);
    border-left: 4px solid #fdcf5b;
}

.about__person--wide {
    width: 100%;
    min-height: 68px;
}

.about__avatar {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #093533;
    font-size: 0.78rem;
    font-weight: 800;
    background: #fdcf5b;
    border-radius: 11px;
    box-shadow: 0 7px 16px rgba(253, 207, 91, 0.12);
}

.about__person--primary .about__avatar {
    width: 48px;
    height: 48px;
    font-size: 0.88rem;
}

.about__person-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.18rem;
}

.about__person-content strong {
    max-width: 100%;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.about__person-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.72rem;
    line-height: 1.4;
}

.about a {
    color: #fdcf5b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.about a:hover {
    color: #ffe08a;
    border-bottom-color: #fdcf5b;
}

@media (max-height: 760px) and (min-width: 541px) {
    .about {
        align-items: flex-start;
        padding: 0.5rem;
        overflow-y: auto;
    }

    .about__container {
        padding: 1rem 1.2rem;
    }

    .about__badge {
        margin-bottom: 0.3rem;
        padding: 0.25rem 0.6rem;
    }

    .about__title {
        font-size: 1.7rem;
    }

    .about__description {
        margin: 0.35rem auto 0.8rem;
        font-size: 0.82rem;
    }

    .about__section {
        margin-top: 0.45rem;
        padding: 0.7rem;
    }

    .about__section-heading {
        margin-bottom: 0.5rem;
    }

    .about__section-number {
        width: 32px;
        height: 32px;
    }

    .about__person {
        min-height: 52px;
        padding: 0.45rem 0.6rem;
    }

    .about__avatar {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 0.75rem;
    }

    .about__container {
        padding: 1.1rem;
        border-radius: 18px;
    }

    .about__people-grid {
        grid-template-columns: 1fr;
    }

    .about__background-mark {
        opacity: 0.06;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@media (max-width: 540px) {
    .about {
        align-items: center;
        justify-content: center;
        padding: 0.6rem;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .about__container {
        width: 100%;
        max-width: 100%;
        margin: auto;
        padding: 0.9rem 0.75rem;
        border-radius: 15px;
    }

    .about__badge {
        margin-bottom: 0.35rem;
        font-size: 0.61rem;
    }

    .about__title {
        font-size: 1.5rem;
    }

    .about__description {
        margin: 0.4rem auto 0.75rem;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .about__section {
        margin-top: 0.4rem;
        padding: 0.65rem;
        border-radius: 12px;
    }

    .about__section-heading {
        gap: 0.6rem;
        margin-bottom: 0.55rem;
    }

    .about__section-number {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .about__section-heading h2 {
        font-size: 0.9rem;
    }

    .about__people-grid {
        gap: 0.4rem;
    }

    .about__person,
    .about__person--primary,
    .about__person--wide {
        min-height: 56px;
        gap: 0.6rem;
        padding: 0.5rem 0.6rem;
        border-radius: 11px;
    }

    .about__avatar,
    .about__person--primary .about__avatar {
        width: 38px;
        height: 38px;
        font-size: 0.7rem;
        border-radius: 10px;
    }

    .about__person-content strong {
        font-size: 0.8rem;
    }

    .about__person-content p {
        font-size: 0.68rem;
    }

    .about__background-mark {
        opacity: 0.04;
        transform: translate(-50%, -50%) scale(0.65);
    }
}