/* Hero styles now handled by shared .page-hero in site.css */

.about-side-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--core-accent);
}

.about-side-kicker::before {
    content: "";
    width: 1.6rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--core-cyan), var(--core-primary));
}

.about-main-section {
    background: var(--core-page-bg);
}

.about-content-card,
.about-side-card {
    border-radius: var(--core-radius-lg);
    border: 1px solid rgba(8, 174, 202, 0.14) !important;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.about-side-stat-list {
    display: grid;
    gap: 1rem;
}

.about-side-stat {
    padding: 1rem 1.1rem;
    border-radius: var(--core-radius);
    background:
        linear-gradient(135deg, rgba(8, 174, 202, 0.08), rgba(7, 87, 184, 0.045)),
        #ffffff;
    border: 1px solid rgba(8, 174, 202, 0.14);
}

.about-side-stat strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #0f172a;
}

.about-side-stat span {
    display: block;
    color: #64748b;
    font-size: 0.95rem;
}

.about-rich-content {
    color: #1f2937;
    line-height: 1.8;
}

.about-rich-content h2,
.about-rich-content h3,
.about-rich-content h4 {
    color: var(--core-heading);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.9rem;
}

.about-rich-content p,
.about-rich-content li {
    color: var(--core-text-secondary);
    font-size: 1.02rem;
}

.about-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 1rem 0;
}

.about-rich-content table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.about-rich-content table th,
.about-rich-content table td {
    padding: 0.85rem 1rem;
    border: 1px solid #e5e7eb;
}

.about-rich-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--core-accent);
    background: #f4fbfd;
    color: #334155;
}

.about-cta-panel {
    padding: 2.5rem 2.5rem;
    border-radius: var(--core-radius-lg);
    background:
        radial-gradient(circle at top right, rgba(22, 217, 232, 0.11), transparent 50%),
        radial-gradient(circle at bottom left, rgba(7, 87, 184, 0.08), transparent 50%),
        #ffffff;
    border: 1px solid rgba(8, 174, 202, 0.16);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 18px 45px rgba(2, 6, 23, 0.06);
    position: relative;
    overflow: hidden;
}

.about-cta-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--core-cyan), var(--core-primary));
    border-radius: var(--core-radius-lg) var(--core-radius-lg) 0 0;
}

.about-admin-preview {
    max-height: 460px;
    overflow: auto;
}

.about-map-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--core-radius-lg);
    border: 1px solid rgba(8, 174, 202, 0.16);
    background:
        radial-gradient(circle at top right, rgba(22, 217, 232, 0.1), transparent 42%),
        #ffffff;
    box-shadow: var(--core-shadow-sm);
}

.about-map-frame {
    overflow: hidden;
    border-radius: var(--core-radius-lg);
    border: 1px solid rgba(8, 174, 202, 0.16);
    background: #eef6ff;
    aspect-ratio: 16 / 9;
}

.about-map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 991.98px) {
    .about-cta-panel {
        padding: 1.5rem;
        text-align: center;
    }
}
