/* =====================
   O mně – About page
   ===================== */

/* Hero section */
.about-hero {
    position: relative;
    padding: 70px 5% 110px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 560' preserveAspectRatio='none'%3E%3Cpath fill='%23ddf3f4' d='M0,0 H1440 V380 C1300,470 1100,490 960,440 C820,390 700,360 540,420 C380,480 200,510 0,460 Z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-teal);
    margin-bottom: 14px;
}

.about-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text-color);
}

.about-subtitle {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Content wrapper */
.about-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

/* Individual story block */
.about-block {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin: 54px 0;
}

.about-block--right {
    flex-direction: row-reverse;
}

.about-block-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--box-bg);
    border: 2px solid var(--box-shadow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: 4px;
}

.about-block-body {
    flex: 1;
}

.about-block-body h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
}

.about-block-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--highlight-orange);
    border-radius: 2px;
}

.about-block--right .about-block-body h2::after {
    left: unset;
    right: 0;
}

.about-block-body p {
    font-size: 16.5px;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 12px;
    color: var(--text-color);
}

/* Credentials list */
.about-credentials {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-credentials li {
    background-color: var(--primary-teal);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Pull quote */
.about-quote {
    background-color: var(--box-bg);
    border-left: 5px solid var(--highlight-orange);
    margin: 10px 0 10px;
    padding: 28px 36px;
    border-radius: 0 16px 16px 0;
    font-family: 'Libre+Baskerville', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
}

/* Decorative divider */
.about-divider {
    text-align: center;
    margin: 8px 0;
    color: var(--highlight-orange);
    font-size: 22px;
    opacity: 0.45;
    letter-spacing: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 34px;
    }

    .about-block,
    .about-block--right {
        flex-direction: column;
        gap: 16px;
    }

    .about-block-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .about-block-body h2 {
        font-size: 22px;
    }

    .about-quote {
        font-size: 17px;
        padding: 20px 22px;
    }

    .about-block--right .about-block-body h2::after {
        left: 0;
        right: unset;
    }
}

.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.photos > img {
    max-width: 300px;
}