.about-page {
    padding: 40px 0 70px;
}

.about-page-header {
    margin-bottom: 40px;
}

.about-page-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.about-page-header p {
    color: #666;
    margin: 0;
}

.about-empty {
    padding: 60px 20px;
    color: #888;
    background: #f8f9fa;
    border-radius: 8px;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about-section--reverse {
    grid-template-columns: 1.2fr 1fr;
}

.about-section--reverse .about-section__media {
    order: 2;
}

.about-section--reverse .about-section__body {
    order: 1;
}

.about-section__media img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.about-section__body h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.about-section__content {
    color: #444;
    line-height: 1.8;
}

.about-section__content img {
    max-width: 100%;
    height: auto;
}

.about-section__content p {
    margin-bottom: 12px;
}

.about-section__content ul,
.about-section__content ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .about-section,
    .about-section--reverse {
        grid-template-columns: 1fr;
    }

    .about-section--reverse .about-section__media,
    .about-section--reverse .about-section__body {
        order: unset;
    }
}
