/* ============================================
   About Page - Newspaper Style
   ============================================ */

.about-page {
    background: #ffffff;
}

.about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static/site/images/pages/about-us/about-hero.jpg");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.about-hero__container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 80px 20px;
}

.about-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.about-hero__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0 0 24px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item__number {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-row:last-child {
    margin-bottom: 0;
}

.about-row--reverse {
    direction: rtl;
}

.about-row--reverse > * {
    direction: ltr;
}

.about-row__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.about-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-row__image:hover img {
    transform: scale(1.03);
}

.about-row__content {
    padding: 20px 0;
}

.about-row__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #3a5a7c;
    margin-bottom: 12px;
}

.about-row__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.25;
}

.about-row__text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.85;
    margin: 0 0 20px;
}

.about-row__text:last-child {
    margin-bottom: 0;
}

.about-row__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: gap 0.2s ease;
}

.about-row__link:hover {
    gap: 15px;
    color: #3a5a7c;
}

.features-section {
    background: #f8f8f8;
    padding: 80px 20px;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #3a5a7c;
    margin-bottom: 12px;
}

.features-header__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3a5a7c 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.75rem;
    color: #ffffff;
}

.feature-card__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.team-section {
    padding: 80px 20px;
    background: #ffffff;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.team-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 50px;
}

.team-header__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #3a5a7c;
    margin-bottom: 12px;
}

.team-header__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.team-header__text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-card {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: #1a1a1a;
}

.team-card:hover .team-card__name,
.team-card:hover .team-card__role,
.team-card:hover .team-card__bio {
    color: #ffffff;
}

.team-card:hover .team-card__role {
    color: rgba(255, 255, 255, 0.6);
}

.team-card__image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2.5rem;
}

.team-card__content {
    flex: 1;
    min-width: 0;
}

.team-card__name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
    transition: color 0.3s ease;
}

.team-card__role {
    font-size: 0.8125rem;
    color: #888;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}

.team-card__bio {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.cta-section {
    background: linear-gradient(135deg, #3a5a7c 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.7;
    margin: 0 0 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-btn--primary {
    background: #ffffff;
    color: #1a1a1a;
}

.cta-btn--primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .about-hero__title {
        font-size: 2.75rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 400px;
    }

    .about-hero__container {
        padding: 60px 20px;
    }

    .about-hero__title {
        font-size: 2rem;
    }

    .about-hero__subtitle {
        font-size: 1.0625rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item__number {
        font-size: 2.25rem;
    }

    .about-content {
        padding: 50px 20px;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-row--reverse {
        direction: ltr;
    }

    .about-row__title {
        font-size: 1.75rem;
    }

    .features-section,
    .team-section {
        padding: 50px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-header__title {
        font-size: 1.75rem;
    }

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

    .team-card {
        flex-direction: column;
        text-align: center;
    }

    .team-card__image {
        margin: 0 auto;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
