/* =====================================================
   AuditWorkshop — Interior Pages
   Shared section/button primitives live in aw-brand.css
   ===================================================== */

/* ---- Page Hero (banner at top of every interior page) ---- */
.aw-page-hero {
    background: #1c4b42;
    padding: 72px 24px 64px;
    text-align: center;
}
.aw-page-hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a7d7c0;
    margin: 0 0 16px;
}
.aw-page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.aw-page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ---- Page content containers ---- */

/* Narrow prose column — About, Contact, FAQ, Terms, Policy */
.aw-page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px 72px;
}
.aw-page-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin: 40px 0 14px;
}
.aw-page-content h2:first-child { margin-top: 0; }
.aw-page-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin: 28px 0 10px;
}
.aw-page-content p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.97rem;
}
.aw-page-content ul,
.aw-page-content ol {
    color: #444;
    font-size: 0.97rem;
    line-height: 1.7;
    padding-left: 24px;
    margin-bottom: 16px;
}
.aw-page-content a {
    color: #1c4b42;
    text-decoration: underline;
}
.aw-page-content a:hover { color: #2d7a5f; }

/* Wide column — Workshops, Courses archive, any page with a grid */
.aw-page-content-wide {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 24px 72px;
}

/* ---- About page specific ---- */
.aw-about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.aw-about-list li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.65;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}
.aw-about-list li:last-child { border-bottom: none; }
.aw-about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #1c4b42;
    border-bottom: 2px solid #1c4b42;
    transform: rotate(-45deg);
}
.aw-about-cta {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2ebe6;
}
.aw-about-cta p {
    color: #555;
    margin-bottom: 16px;
}

/* ---- Homepage: Learn section (also used on interior) ---- */
.aw-learn-section { background: #fff; }
.aw-learn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.aw-learn-card {
    background: #f6f8f7;
    border: 1px solid #e2ebe6;
    border-radius: 12px;
    padding: 28px 24px;
}
.aw-learn-num {
    font-size: 2rem;
    font-weight: 700;
    color: #d0e8df;
    margin-bottom: 14px;
    line-height: 1;
}
.aw-learn-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
}
.aw-learn-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .aw-learn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .aw-page-content,
    .aw-page-content-wide { padding: 40px 20px 56px; }
    .aw-learn-grid { grid-template-columns: 1fr; }
}
