/* Rólam */

.about-page main {
    background: #f8fafc;
}

.about-hero {
    background: linear-gradient(125deg, #0c2444 0%, #0f2d52 42%, #164a5c 78%, #1a5c48 100%);
    color: #fff;
    padding: 2.75rem 0 3rem;
}

.about-hero__inner {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 2.25rem 2.75rem;
    align-items: center;
}

.about-hero__visual {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.about-hero__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.about-hero__eyebrow {
    margin: 0 0 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(158, 240, 192, 0.9);
}

.about-hero__title {
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.about-hero__lead {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
    max-width: 40rem;
}

.about-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-creds li {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(60, 179, 113, 0.18);
    color: #b7f0ce;
    border: 1px solid rgba(118, 226, 162, 0.28);
}

.about-body {
    padding: 3rem 0 4rem;
    max-width: 760px;
}

.about-prose h2,
.about-facts h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 0 0 1rem;
}

.about-prose p,
.about-facts__intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin: 0 0 1.1rem;
}

.about-prose {
    margin-bottom: 2.25rem;
}

.about-quote {
    margin: 0 0 2.5rem;
    padding: 1.25rem 1.35rem 1.25rem 1.4rem;
    border-left: 4px solid #3cb371;
    background: #fff;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow);
}

.about-quote p {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-navy);
}

.about-facts {
    margin-bottom: 2.5rem;
}

.about-facts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.about-facts__grid li {
    background: #fff;
    border-radius: 14px;
    padding: 1.1rem 1rem 1.05rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.about-facts__grid strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.about-facts__grid span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.82rem;
    color: #64748b;
}

.about-facts__list {
    margin: 0;
    padding-left: 1.15rem;
    color: #334155;
    line-height: 1.7;
}

.about-facts__list li + li {
    margin-top: 0.4rem;
}

.about-cta {
    margin-top: 0.5rem;
    padding: 1.5rem 1.5rem 1.6rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.about-cta__text {
    margin: 0 0 1.1rem;
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 1.75rem 0 2.15rem;
    }

    .about-hero__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        text-align: center;
    }

    .about-hero__visual {
        width: min(220px, 62vw);
    }

    .about-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .about-creds {
        justify-content: center;
    }

    .about-facts__grid {
        grid-template-columns: 1fr;
    }

    .about-body {
        padding-top: 2.25rem;
    }
}
