/* ═══════════════════════════════════════════════════════════════════════════
   INKWELL DIGITAL ACADEMY — Master Stylesheet
   Version: 5.0
   File: inkwell-styles.css
   Upload to: wp-content/plugins/inkwell-prerequisites/inkwell-styles.css
   Loaded automatically by the Inkwell plugin.
   DO NOT paste this into the Customizer — upload the file directly.
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }

/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE — TRUST BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.trust-bar {
    background: linear-gradient(145deg, #e8b84b, #c9a84c, #a8893a);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.2);
    padding: 30px 60px;
    width: 100%;
    box-sizing: border-box;
}
.trust-bar-inner { display: flex; align-items: center; justify-content: space-evenly; width: 100%; }
.trust-col { text-align: center; flex: 1; padding: 0 30px; }
.trust-col h4 { color: #ffffff; font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 8px 0; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.trust-col p { color: #ffffff; font-size: 0.85rem; margin: 0; text-shadow: 0 1px 1px rgba(0,0,0,0.2); }
.trust-divider { color: rgba(255,255,255,0.5); font-size: 2.5rem; font-weight: 100; line-height: 1; flex-shrink: 0; }

@media (max-width: 768px) {
    .trust-bar { padding: 30px 20px; }
    .trust-bar-inner { flex-wrap: wrap; gap: 0; }
    .trust-col { flex: 0 0 50%; padding: 20px 15px; border-bottom: 1px solid rgba(255,255,255,0.3); }
    .trust-col:nth-child(1), .trust-col:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.3); }
    .trust-divider { display: none; }
}
@media (max-width: 480px) {
    .trust-bar { padding: 20px 15px; }
    .trust-bar-inner { flex-direction: column; }
    .trust-col { flex: 0 0 100%; width: 100%; padding: 18px 10px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.3); }
    .trust-col:last-child { border-bottom: none; }
    .trust-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE — FEATURED COURSES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.courses-section { background-color: #ffffff; padding: 60px 40px; width: 100%; box-sizing: border-box; }
.courses-section-title { text-align: center; color: #1a1a2e; font-size: 2rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.courses-section-subtitle { text-align: center; color: #555555; font-size: 1rem; margin-bottom: 50px; }
.courses-grid { display: flex; gap: 40px; justify-content: center; align-items: stretch; flex-wrap: wrap; }

.course-card {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 20%, #d4f0ed 60%, #a8ddd7 100%);
    border: 2px solid #c9a84c;
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.course-card:hover { transform: scale(1.04); box-shadow: 0 16px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.9); }
.course-card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background-color: #c9a84c; color: #1a1a2e; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 18px; border-radius: 20px; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.course-card-icon { width: 70px; height: 70px; object-fit: contain; margin-top: 10px; }
.course-card-title { color: #1a1a2e; font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin: 0; line-height: 1.4; }
.course-card-description { color: #2a2a2a; font-size: 0.9rem; line-height: 1.7; margin: 0; opacity: 0.9; }
.course-card-btn { display: inline-block; background-color: #1a1a2e; color: #c9a84c; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 12px 30px; border-radius: 6px; text-decoration: none; margin-top: auto; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: background-color 0.3s ease, transform 0.2s ease; }
.course-card-btn:hover { background-color: #c9a84c; color: #1a1a2e; transform: translateY(-2px); text-decoration: none; }

@media (max-width: 768px) { .courses-section { padding: 40px 20px; } .courses-grid { gap: 50px; } .course-card { max-width: 100%; } }
@media (max-width: 480px) { .courses-section-title { font-size: 1.5rem; } .courses-grid { flex-direction: column; align-items: center; } .course-card { width: 100%; max-width: 100%; } }

/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE — HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */

.how-it-works { background-color: #1a1a2e; padding: 60px 40px; width: 100%; box-sizing: border-box; }
.how-it-works-title { text-align: center; color: #c9a84c; font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.how-it-works-subtitle { text-align: center; color: #ffffff; font-size: 1rem; margin-bottom: 50px; opacity: 0.8; }
.how-it-works-row { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 0; width: 100%; }
.how-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; max-width: 200px; padding: 0 10px; }
.how-step-circle { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(145deg, #008080, #006666); border: 3px solid #c9a84c; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 4px 15px rgba(0,0,0,0.4); flex-shrink: 0; }
.how-step-number { color: #c9a84c; font-size: 1.4rem; font-weight: 700; }
.how-step-title { color: #c9a84c; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px 0; line-height: 1.3; }
.how-step-desc { color: #ffffff; font-size: 0.82rem; line-height: 1.6; margin: 0; opacity: 0.85; }
.how-arrow { color: #c9a84c; font-size: 2rem; flex-shrink: 0; margin: 0 5px; padding-bottom: 40px; opacity: 0.7; }

@media (max-width: 768px) { .how-it-works { padding: 40px 20px; } .how-it-works-row { flex-wrap: wrap; gap: 30px; } .how-step { flex: 0 0 45%; max-width: 45%; } .how-arrow { display: none; } }
@media (max-width: 480px) { .how-it-works-title { font-size: 1.5rem; } .how-it-works-row { flex-direction: column; align-items: center; gap: 30px; } .how-step { flex: 0 0 100%; max-width: 280px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE — QUOTE
   ═══════════════════════════════════════════════════════════════════════════ */

.quote-section { background: linear-gradient(145deg, #005f5f, #007070, #005555); padding: 70px 40px; width: 100%; box-sizing: border-box; text-align: center; box-shadow: inset 0 2px 8px rgba(0,0,0,0.3), inset 0 -2px 8px rgba(0,0,0,0.3); }
.quote-mark { color: #c9a84c; font-size: 5rem; line-height: 0.5; opacity: 0.6; display: block; margin-bottom: 20px; font-family: Georgia, serif; }
.quote-text { color: #c9a84c; font-size: 1.6rem; font-weight: 700; font-style: italic; line-height: 1.6; max-width: 800px; margin: 0 auto 20px auto; text-shadow: 0 2px 6px rgba(0,0,0,0.4); letter-spacing: 0.5px; }
.quote-divider { width: 60px; height: 3px; background-color: #c9a84c; margin: 0 auto; opacity: 0.7; }

@media (max-width: 768px) { .quote-section { padding: 50px 30px; } .quote-text { font-size: 1.3rem; } }
@media (max-width: 480px) { .quote-section { padding: 40px 20px; } .quote-text { font-size: 1.1rem; } .quote-mark { font-size: 3.5rem; } }

/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE — TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */

.testimonials-section { background-color: #ffffff; padding: 70px 40px; width: 100%; box-sizing: border-box; text-align: center; }
.testimonials-title { color: #1a1a2e; font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.testimonials-title span { color: #008080; }
.testimonials-divider { width: 60px; height: 3px; background-color: #c9a84c; margin: 0 auto 30px auto; }
.testimonials-placeholder-text { color: #444444; font-size: 1.1rem; line-height: 1.8; max-width: 650px; margin: 0 auto 30px auto; }
.testimonials-placeholder-text em { color: #008080; font-style: italic; font-weight: 600; }
.testimonials-cta-btn { display: inline-block; background-color: #1a1a2e; color: #c9a84c; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 14px 35px; border-radius: 6px; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: background-color 0.3s ease, transform 0.2s ease; }
.testimonials-cta-btn:hover { background-color: #c9a84c; color: #1a1a2e; transform: translateY(-2px); text-decoration: none; }

@media (max-width: 768px) { .testimonials-section { padding: 50px 30px; } .testimonials-title { font-size: 1.6rem; } }
@media (max-width: 480px) { .testimonials-section { padding: 40px 20px; } .testimonials-title { font-size: 1.4rem; } .testimonials-placeholder-text { font-size: 1rem; } }

/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE — FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════ */

.final-cta-section { background: linear-gradient(145deg, #e8b84b, #c9a84c, #a8893a); box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.2); padding: 80px 40px; width: 100%; box-sizing: border-box; text-align: center; }
.final-cta-title { color: #1a1a2e; font-size: 2.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; line-height: 1.2; text-shadow: 0 2px 4px rgba(0,0,0,0.15); }
.final-cta-subtitle { color: #1a1a2e; font-size: 1.1rem; line-height: 1.7; max-width: 650px; margin: 0 auto 40px auto; opacity: 0.85; font-weight: 500; }
.final-cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.final-cta-btn-primary { display: inline-block; background-color: #1a1a2e; color: #c9a84c; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 40px; border-radius: 6px; text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.3); transition: background-color 0.3s ease, transform 0.2s ease; }
.final-cta-btn-primary:hover { background-color: #008080; color: #ffffff; transform: translateY(-3px); text-decoration: none; }
.final-cta-btn-secondary { display: inline-block; background-color: transparent; color: #1a1a2e; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 40px; border-radius: 6px; border: 3px solid #1a1a2e; text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.15); transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease; }
.final-cta-btn-secondary:hover { background-color: #1a1a2e; color: #c9a84c; transform: translateY(-3px); text-decoration: none; }

@media (max-width: 768px) { .final-cta-section { padding: 60px 30px; } .final-cta-title { font-size: 2rem; } }
@media (max-width: 480px) { .final-cta-section { padding: 50px 20px; } .final-cta-title { font-size: 1.6rem; letter-spacing: 2px; } .final-cta-subtitle { font-size: 1rem; } .final-cta-buttons { flex-direction: column; align-items: center; } .final-cta-btn-primary, .final-cta-btn-secondary { width: 100%; max-width: 300px; text-align: center; } }

/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGE BANNER
   ═══════════════════════════════════════════════════════════════════════════ */

.ikw-page-banner { background: #1a1a2e; padding: 8rem 2rem 3rem; text-align: center; position: relative; overflow: hidden; }
.ikw-page-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, #008080, #c9a84c); }
.ikw-page-banner-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #008080; margin-bottom: 0.75rem; }
.ikw-page-banner-title { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: #ffffff; margin: 0 0 0.75rem; line-height: 1.15; font-weight: 700; }
.ikw-page-banner-rule { width: 60px; height: 3px; background: #c9a84c; margin: 0 auto 1rem; border-radius: 2px; }
.ikw-page-banner-subtitle { font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.7; max-width: 520px; margin: 0 auto; }
.ikw-page-banner-subtitle--gold { color: #c9a84c; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; }

@media (max-width: 700px) { .ikw-page-banner { padding: 6rem 1.5rem 2.5rem; } .ikw-page-banner-title { font-size: 1.9rem; } }

/* ═══════════════════════════════════════════════════════════════════════════
   COURSES PAGE — [inkwell_courses] SHORTCODE
   ═══════════════════════════════════════════════════════════════════════════ */

.ikw-wrap { font-family: 'Source Sans 3', sans-serif; color: #444444; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ikw-hero { text-align: center; padding: 72px 24px 48px; }
.ikw-hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #c9a84c; margin-bottom: 16px; }
.ikw-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: #1a1a2e; line-height: 1.15; margin: 0 0 20px; }
.ikw-hero p { font-size: 1.1rem; color: #555; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.ikw-divider { width: 80px; height: 3px; background: linear-gradient(to right, #1a1a2e, #c9a84c); margin: 0 auto 56px; border-radius: 2px; }
.ikw-section { margin-bottom: 72px; }
.ikw-section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #008080; margin-bottom: 10px; text-align: center; }
.ikw-section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: #1a1a2e; text-align: center; margin-bottom: 10px; }
.ikw-section-sub { font-size: 0.98rem; color: #888888; text-align: center; margin-bottom: 40px; }
.ikw-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; position: relative; }
.ikw-card { background: #ffffff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.10); overflow: visible; transition: box-shadow 0.22s ease, transform 0.22s ease; display: flex; flex-direction: column; position: relative; border: 1px solid #e8e8e8; }
.ikw-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.18); transform: translateY(-3px); }
.ikw-card.open { z-index: 100; grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; transform: none; box-shadow: 0 8px 40px rgba(0,0,0,0.18); border-color: #c9a84c; overflow: hidden; }
.ikw-card-face { display: flex; flex-direction: column; flex: 1; }
.ikw-card.open .ikw-card-face { display: none; }
.ikw-card.open .ikw-card-expanded { display: grid; }
.ikw-card-art { position: relative; height: 180px; display: flex; align-items: flex-end; padding: 16px; overflow: hidden; }
.ikw-card-art--image { background-size: cover !important; background-position: center !important; }
.ikw-card-art-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #ffffff; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.5); line-height: 1.3; max-width: 90%; }
.ikw-card-art-badge { position: absolute; top: 14px; right: 14px; background: #c9a84c; color: #1a1a2e; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.ikw-card-body { padding: 20px 22px 14px; flex: 1; }
.ikw-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #008080; margin-bottom: 8px; }
.ikw-card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #1a1a2e; line-height: 1.3; margin-bottom: 14px; }
.ikw-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.ikw-meta-chip { font-size: 12px; color: #555; background: #f0f0f0; border-radius: 20px; padding: 4px 11px; display: flex; align-items: center; gap: 5px; }
.ikw-meta-chip i { font-size: 13px; color: #008080; }
.ikw-card-footer { padding: 16px 22px 20px; border-top: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ikw-card-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #c9a84c; font-weight: 700; line-height: 1.1; }
.ikw-card-price span { display: block; font-family: 'Source Sans 3', sans-serif; font-size: 11px; color: #888888; font-weight: 400; letter-spacing: 0.5px; margin-top: 2px; }
.ikw-view-btn { background: #1a1a2e; color: #ffffff !important; border: none; border-radius: 4px; padding: 10px 18px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: background 0.22s ease; white-space: nowrap; }
.ikw-view-btn:hover { background: #008080; }
.ikw-view-btn i { font-size: 14px; transition: transform 0.22s ease; }
.ikw-view-btn:hover i { transform: translateX(3px); }
.ikw-card-expanded { display: none; grid-template-columns: 1fr 1fr; gap: 0; }
.ikw-expanded-left { border-right: 1px solid #ececec; display: flex; flex-direction: column; }
.ikw-expanded-art { height: 220px; border-radius: 0; flex-shrink: 0; }
.ikw-expanded-desc-wrap { padding: 24px 28px; flex: 1; overflow-y: auto; }
.ikw-expanded-desc { font-size: 0.95rem; color: #444; line-height: 1.75; }
.ikw-expanded-desc p { margin: 0 0 12px; }
.ikw-expanded-right { padding: 28px 32px; position: relative; display: flex; flex-direction: column; gap: 0; background: #f7f7f5; }
.ikw-panel-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 20px; color: #999; cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 4px; transition: color 0.22s ease, background 0.22s ease; }
.ikw-panel-close:hover { color: #1a1a2e; background: #e8e8e8; }
.ikw-panel-headline { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; margin-top: 12px; }
.ikw-panel-sub { font-size: 12px; color: #888888; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.ikw-module-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; max-height: 220px; overflow-y: auto; }
.ikw-module-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #333; line-height: 1.5; }
.ikw-module-item i { color: #008080; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.ikw-includes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ikw-include-chip { display: flex; align-items: center; gap: 6px; background: #ffffff; border: 1px solid #ddd; border-radius: 20px; padding: 5px 12px; font-size: 12px; color: #1a1a2e; font-weight: 600; }
.ikw-include-chip i { color: #c9a84c; font-size: 14px; }
.ikw-enroll-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid #e0e0e0; }
.ikw-final-price { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #c9a84c; font-weight: 700; line-height: 1.1; }
.ikw-final-price small { display: block; font-family: 'Source Sans 3', sans-serif; font-size: 11px; color: #888888; font-weight: 400; }
.ikw-enroll-btn { display: inline-flex; align-items: center; gap: 8px; background: #c9a84c; color: #1a1a2e !important; text-decoration: none !important; font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 4px; transition: background 0.22s ease, transform 0.22s ease; white-space: nowrap; }
.ikw-enroll-btn:hover { background: #b8942f; transform: translateY(-1px); }
.ikw-enroll-btn i { font-size: 16px; }
.ikw-guarantee { font-size: 12px; color: #888888; display: flex; align-items: center; gap: 6px; }
.ikw-guarantee i { color: #008080; font-size: 14px; }
.ikw-overlay-backdrop { display: none; position: fixed; inset: 0; background: rgba(10,10,20,0.55); z-index: 90; backdrop-filter: blur(2px); }
.ikw-overlay-backdrop.active { display: block; }
body.ikw-locked { overflow: hidden; }
.ikw-tagline { text-align: center; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: #888888; margin: 36px 0 0; }
.ikw-expect { background: #1a1a2e; padding: 64px 24px; margin: 0 -24px; }
.ikw-expect-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #c9a84c; text-align: center; margin-bottom: 10px; }
.ikw-expect-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #ffffff; text-align: center; margin-bottom: 40px; }
.ikw-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; max-width: 900px; margin: 0 auto; }
.ikw-step { text-align: center; }
.ikw-step-num { width: 52px; height: 52px; border-radius: 50%; background: #c9a84c; color: #1a1a2e; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', serif; }
.ikw-step-title { font-weight: 700; font-size: 1rem; color: #c9a84c; margin-bottom: 8px; }
.ikw-step-desc { font-size: 0.88rem; color: #b0b0c8; line-height: 1.6; }
.ikw-faq { background: #f7f7f5; padding: 64px 24px; margin: 0 -24px; }
.ikw-faq-inner { max-width: 760px; margin: 0 auto; }
.ikw-faq-item { border-bottom: 1px solid #e0e0e0; }
.ikw-faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 700; color: #1a1a2e; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: color 0.22s ease; }
.ikw-faq-q:hover { color: #008080; }
.ikw-faq-q i { font-size: 18px; flex-shrink: 0; transition: transform 0.22s ease; color: #c9a84c; }
.ikw-faq-q.open i { transform: rotate(180deg); }
.ikw-faq-a { display: none; padding: 0 0 20px; font-size: 0.95rem; color: #555; line-height: 1.75; }
.ikw-faq-a.open { display: block; }
.ikw-faq-a p { margin: 0; }
.ikw-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; padding: 36px 24px; background: #ffffff; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; margin: 0 -24px; }
.ikw-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #1a1a2e; letter-spacing: 0.5px; }
.ikw-trust-item i { font-size: 18px; color: #c9a84c; }

@media (max-width: 900px) { .ikw-card-expanded { grid-template-columns: 1fr; } .ikw-expanded-left { border-right: none; border-bottom: 1px solid #ececec; } .ikw-enroll-row { flex-direction: column; align-items: flex-start; } .ikw-enroll-btn { width: 100%; justify-content: center; } }
@media (max-width: 700px) { .ikw-card-expanded { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 92vw; max-width: 92vw; max-height: 88vh; overflow-y: auto; flex-direction: column; border-radius: 14px; } .ikw-expanded-left { width: 100%; border-right: none; border-bottom: 1px solid #f0ece0; } .ikw-expanded-desc-wrap { max-height: 200px; } .ikw-cards { grid-template-columns: 1fr; } .ikw-steps { grid-template-columns: 1fr 1fr; } .ikw-hero h1 { font-size: 1.6rem; } }
@media (max-width: 480px) { .ikw-steps { grid-template-columns: 1fr; } .ikw-card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; } .ikw-view-btn { width: 100%; justify-content: center; } }

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   Actual class names from shortcode: .ab, .ab-mission, .ab-vision,
   .ab-why, .ab-values, .ab-serve, .ab-founders, .ab-cta
   ═══════════════════════════════════════════════════════════════════════════ */

.ab {
    font-family: 'Source Sans 3', sans-serif;
    color: #444444;
}

/* Shared section structure */
.ab-mission, .ab-vision, .ab-why, .ab-values, .ab-serve, .ab-founders {
    padding: 64px 0;
    border-bottom: 1px solid #efefef;
}

.ab-mission-inner, .ab-vision-inner, .ab-why-inner,
.ab-values-inner, .ab-serve-inner, .ab-founders-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Eyebrow labels */
.ab-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #008080;
    margin-bottom: 16px;
    display: block;
}

.ab-eyebrow--light { color: #c9a84c; }

/* Section labels / titles / rules */
.ab-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #008080;
    margin-bottom: 10px;
    display: block;
}

.ab-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.2;
}

.ab-section-rule {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #1a1a2e, #c9a84c);
    border-radius: 2px;
    margin-bottom: 40px;
}

/* ── Mission ─────────────────────────────────────────────────────────────── */

.ab-mission { background: #ffffff; }

.ab-mission-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: #1a1a2e;
    border-left: 5px solid #c9a84c;
    padding: 20px 28px;
    margin: 0 0 28px;
    background: #faf9f5;
    border-radius: 0 8px 8px 0;
    line-height: 1.55;
}

.ab-mission-sub {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    max-width: 820px;
    margin: 0;
}

/* ── Vision ──────────────────────────────────────────────────────────────── */

.ab-vision { background: #1a1a2e; }
.ab-vision-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

.ab-vision-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.ab-vision-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
    max-width: 820px;
    margin: 0;
}

/* ── Why We Built This ───────────────────────────────────────────────────── */

.ab-why { background: #f7f7f5; }

.ab-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ab-why-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ab-why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }

.ab-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ab-why-icon i { color: #c9a84c; font-size: 20px; }

.ab-why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #008080;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ab-why-card p { font-size: 1rem; color: #555; line-height: 1.7; margin: 0; }

/* ── Values ──────────────────────────────────────────────────────────────── */

.ab-values { background: #ffffff; }

.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ab-val {
    background: #f7f7f5;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.22s ease;
}

.ab-val:hover { transform: translateY(-3px); }

.ab-val-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ab-val-icon i { color: #c9a84c; font-size: 22px; }

.ab-val h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.ab-val p { font-size: 0.95rem; color: #666; line-height: 1.65; margin: 0; }

/* ── Who We Serve ────────────────────────────────────────────────────────── */

.ab-serve { background: #f7f7f5; }

.ab-serve-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.ab-serve-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 0 36px;
}

/* ab-serve has navy background */
.ab-serve { background: #1a1a2e; }

.ab-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab-serve-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 28px 22px;
    transition: background 0.22s ease, transform 0.22s ease;
}

.ab-serve-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

.ab-serve-card i {
    color: #c9a84c;
    font-size: 28px;
    display: block;
    margin-bottom: 14px;
}

.ab-serve-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.ab-serve-card p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 0; }

/* ── Founders ────────────────────────────────────────────────────────────── */

.ab-founders { background: #ffffff; }

.ab-founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.ab-founder-card { text-align: center; }

.ab-founder-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #c9a84c;
    margin: 0 auto 18px;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.ab-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ab-founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.ab-founder-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #008080;
    margin-bottom: 14px;
}

.ab-founder-divider {
    width: 40px;
    height: 2px;
    background: #c9a84c;
    margin: 0 auto;
    border-radius: 2px;
}

/* ── About CTA ───────────────────────────────────────────────────────────── */

.ab-cta {
    background: #1a1a2e;
    padding: 64px 40px;
    text-align: center;
    font-family: 'Source Sans 3', sans-serif;
}

.ab-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.ab-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 32px;
}

.ab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c9a84c;
    color: #1a1a2e !important;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: background 0.22s ease, transform 0.22s ease;
}

.ab-cta-btn:hover { background: #b8942f; transform: translateY(-2px); }
.ab-cta-btn i { font-size: 18px; }

/* About responsive */
@media (max-width: 1024px) { .ab-values-grid { grid-template-columns: repeat(2, 1fr); } .ab-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .ab-mission-inner, .ab-vision-inner, .ab-why-inner, .ab-values-inner, .ab-serve-inner, .ab-founders-inner { padding: 0 24px; }
    .ab-why-grid { grid-template-columns: 1fr; }
    .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-serve-grid { grid-template-columns: 1fr; }
    .ab-founders-grid { grid-template-columns: 1fr; gap: 32px; }
    .ab-cta { padding: 48px 24px; }
}
@media (max-width: 480px) { .ab-values-grid { grid-template-columns: 1fr; } .ab-founder-photo { width: 130px; height: 130px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   Actual class names from shortcode: .ct, .ct-body, .ct-faq-col,
   .ct-form-col, .ct-faq-label, .ct-faq-title, .ct-faq-sub,
   .ct-faq-item, .ct-faq-q, .ct-faq-a, .ct-still, .ct-still-text,
   .ct-still-head, .ct-still-body, .ct-form-title, .ct-note
   ═══════════════════════════════════════════════════════════════════════════ */

.ct {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    font-family: 'Source Sans 3', sans-serif;
}

.ct-body {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    padding: 64px 0;
    align-items: start;
}

/* FAQ column */
.ct-faq-col { }

.ct-faq-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #008080;
    margin-bottom: 8px;
    display: block;
}

.ct-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.2;
}

.ct-faq-sub {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
    margin: 0 0 28px;
}

.ct-faq-item { border-bottom: 1px solid #e8e8e8; }

.ct-faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 14px 0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color 0.22s ease;
}

.ct-faq-q:hover { color: #008080; }
.ct-faq-q i { color: #c9a84c; font-size: 16px; transition: transform 0.22s ease; flex-shrink: 0; }
.ct-faq-q.open i { transform: rotate(180deg); }

.ct-faq-a { display: none; padding: 0 0 14px; font-size: 1rem; color: #666; line-height: 1.75; }
.ct-faq-a.open { display: block; }
.ct-faq-a p { margin: 0; }

/* Still have a question block */
.ct-still {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f7f7f5;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 20px;
    margin-top: 28px;
}

.ct-still i { color: #c9a84c; font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.ct-still-head {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}

.ct-still-body { font-size: 1rem; color: #666; line-height: 1.65; margin: 0; }

/* Form column */
.ct-form-col {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border: 1px solid #e8e8e8;
}

.ct-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #c9a84c;
}

/* CF7 form styling inside .ct-form-col */
.ct-form-col .wpcf7-form { display: flex; flex-direction: column; }
.ct-form-col .wpcf7-form p { margin: 0 0 18px; }
.ct-form-col .wpcf7-form label { display: block; font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; letter-spacing: 0.3px; }
.ct-form-col .wpcf7-form input[type="text"],
.ct-form-col .wpcf7-form input[type="email"],
.ct-form-col .wpcf7-form select,
.ct-form-col .wpcf7-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Source Sans 3', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    outline: none;
}
.ct-form-col .wpcf7-form input:focus,
.ct-form-col .wpcf7-form select:focus,
.ct-form-col .wpcf7-form textarea:focus { border-color: #008080; box-shadow: 0 0 0 3px rgba(0,128,128,0.12); }
.ct-form-col .wpcf7-form textarea { min-height: 150px; resize: vertical; }
.ct-form-col .wpcf7-form input[type="submit"] {
    background: #c9a84c;
    color: #1a1a2e;
    border: none;
    border-radius: 4px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Source Sans 3', sans-serif;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.22s ease, transform 0.22s ease;
    width: 100%;
}
.ct-form-col .wpcf7-form input[type="submit"]:hover { background: #b8942f; transform: translateY(-1px); }

.ct-note {
    font-size: 13px;
    color: #888888;
    margin-top: 14px;
    text-align: center;
    line-height: 1.6;
}

.wpcf7-not-valid-tip { color: #c0392b; font-size: 12px; margin-top: 4px; display: block; }
.wpcf7-response-output { border-radius: 4px; padding: 12px 16px; font-size: 14px; margin-top: 16px; }
.wpcf7-mail-sent-ok { background: #d4edda; border-color: #c3e6cb !important; color: #155724; }
.wpcf7-validation-errors { background: #fdf0f0; border-color: #f5c6cb !important; color: #721c24; }

@media (max-width: 900px) { .ct { padding: 0 24px; } .ct-body { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; } }
@media (max-width: 480px) { .ct-form-col { padding: 28px 20px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGE
   Actual class names from shortcode: .lg, .lg-nav, .lg-nav-btn,
   .lg-nav-btn--teal, .lg-nav-updated, .lg-body, .lg-section,
   .lg-section--terms, .lg-section-eyebrow, .lg-section-eyebrow--teal,
   .lg-section-title, .lg-section-rule, .lg-section-rule--teal,
   .lg-highlight, .lg-highlight--teal, .lg-contact-box
   ═══════════════════════════════════════════════════════════════════════════ */

.lg {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    font-family: 'Source Sans 3', sans-serif;
}

/* Nav buttons */
.lg-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 32px 0 0;
}

.lg-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a2e;
    color: #c9a84c !important;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background 0.22s ease, transform 0.22s ease;
}

.lg-nav-btn:hover { background: #2d2d4e; transform: translateY(-1px); }
.lg-nav-btn i { font-size: 15px; }

.lg-nav-btn--teal {
    background: #008080;
    color: #ffffff !important;
}

.lg-nav-btn--teal:hover { background: #006666; }

.lg-nav-updated {
    font-size: 13px;
    color: #888888;
    letter-spacing: 0.5px;
    padding: 12px 0 0;
    display: block;
}

/* Body */
.lg-body { padding: 32px 0 64px; }

.lg-section { margin-bottom: 56px; }

.lg-section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 8px;
    display: block;
}

.lg-section-eyebrow--teal { color: #008080; }

.lg-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0;
}

.lg-section-rule {
    width: 60px;
    height: 3px;
    background: #c9a84c;
    border-radius: 2px;
    margin: 12px 0 28px;
}

.lg-section-rule--teal { background: #008080; }

/* Content */
.lg-section h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #1a1a2e; margin: 1.75rem 0 0.6rem; font-weight: 700; }
.lg-section p { font-size: 1rem; color: #444; line-height: 1.85; margin-bottom: 1rem; }
.lg-section ul { margin: 0.5rem 0 1rem 1.5rem; }
.lg-section ul li { font-size: 1rem; color: #444; line-height: 1.8; margin-bottom: 0.4rem; }

/* Highlight boxes */
.lg-highlight {
    background: #faf9f5;
    border-left: 4px solid #c9a84c;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 0 0 28px;
}

.lg-highlight--teal { border-left-color: #008080; }
.lg-highlight p { margin: 0; font-size: 1rem; color: #555; line-height: 1.75; }

/* Contact box */
.lg-contact-box {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 32px 28px;
    margin-top: 32px;
    text-align: center;
}

.lg-contact-box p { color: rgba(255,255,255,0.72); margin-bottom: 12px; font-size: 1rem; line-height: 1.7; }

.lg-contact-box a {
    display: inline-block;
    color: #c9a84c !important;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    border-bottom: 2px solid rgba(201,168,76,0.4);
    padding-bottom: 2px;
    transition: border-color 0.22s ease;
}

.lg-contact-box a:hover { border-color: #c9a84c; }

/* Terms section separator */
.lg-section--terms { margin-top: 48px; padding-top: 48px; border-top: 2px solid #efefef; }

@media (max-width: 768px) { .lg { padding: 0 24px; } }
@media (max-width: 600px) { .lg-section-title { font-size: 1.6rem; } .lg-body { padding: 2rem 0; } .lg-nav { padding: 20px 0 0; } }

/* ═══════════════════════════════════════════════════════════════════════════
   STUDENT DASHBOARD
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   STUDENT DASHBOARD
   Actual class names: .sd, .sd-welcome, .sd-welcome-left, .sd-avatar,
   .sd-welcome-name, .sd-welcome-sub, .sd-logout, .sd-body
   ═══════════════════════════════════════════════════════════════════════════ */

.sd {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    font-family: 'Source Sans 3', sans-serif;
}

/* Welcome bar */
.sd-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
    border-bottom: 3px solid #c9a84c;
    padding: 20px 28px;
    margin-bottom: 0;
}

.sd-welcome-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Avatar circle */
.sd-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #c9a84c, #b8942f);
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.sd-welcome-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #c9a84c;
    margin-bottom: 2px;
}

.sd-welcome-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
}

/* Log Out link */
.sd-logout {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.sd-logout:hover {
    background: rgba(201,168,76,0.2);
    color: #c9a84c !important;
    border-color: rgba(201,168,76,0.4);
}

.sd-logout i { font-size: 15px; }

/* TutorLMS dashboard body */
.sd-body {
    padding: 32px 0 64px;
}

/* TutorLMS overrides — brand colors */
.tutor-dashboard .tutor-dashboard-nav ul { list-style: none; margin: 0; padding: 0; }
.tutor-dashboard .tutor-dashboard-nav ul li a { font-family: 'Source Sans 3', sans-serif; font-weight: 600; color: #1a1a2e; padding: 10px 16px; border-radius: 4px; display: block; transition: background 0.22s ease, color 0.22s ease; text-decoration: none; font-size: 0.95rem; }
.tutor-dashboard .tutor-dashboard-nav ul li a:hover,
.tutor-dashboard .tutor-dashboard-nav ul li.tutor-is-active a { background: #1a1a2e; color: #c9a84c; }
.tutor-dashboard .tutor-dashboard-content-inner h2 { font-family: 'Playfair Display', serif; color: #1a1a2e; font-size: 1.4rem; }
.tutor-dashboard .tutor-btn-primary,
.tutor-dashboard .tutor-btn.tutor-btn-primary { background: #c9a84c !important; color: #1a1a2e !important; border-color: #c9a84c !important; font-weight: 700 !important; }
.tutor-dashboard .tutor-btn-primary:hover { background: #b8942f !important; }

/* Stat boxes — keep gold accent */
.tutor-dashboard .tutor-icon-box-wrap .tutor-icon-box { border-radius: 8px; }

@media (max-width: 768px) { .sd { padding: 0 20px; } }
@media (max-width: 600px) {
    .sd-welcome { flex-direction: column; align-items: flex-start; padding: 16px 20px; gap: 14px; }
    .sd-logout { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AUTH — [inkwell_login] SHORTCODE
   ═══════════════════════════════════════════════════════════════════════════ */

.ikw-auth { max-width: 900px; margin: 40px auto; padding: 0 24px; font-family: 'Source Sans 3', sans-serif; }
.ikw-auth-notice { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 4px; font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.ikw-auth-notice--error { background: #fdf0f0; border: 1px solid #f5c6cb; color: #721c24; }
.ikw-auth-notice i { font-size: 18px; flex-shrink: 0; }
.ikw-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ikw-auth-col { background: #ffffff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 36px 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.ikw-auth-col-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin: 0 0 24px; padding-bottom: 14px; border-bottom: 2px solid #f0f0f0; }
.ikw-auth-col-title--gold { color: #1a1a2e; border-bottom-color: #c9a84c; }
.ikw-auth-col-title--teal { color: #1a1a2e; border-bottom-color: #008080; }
.ikw-auth-form { display: flex; flex-direction: column; }
.ikw-auth-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.ikw-auth-field label { font-size: 13px; font-weight: 700; color: #1a1a2e; letter-spacing: 0.3px; }
.ikw-auth-field input { padding: 11px 14px; border: 1px solid #d0d0d0; border-radius: 4px; font-size: 14px; font-family: 'Source Sans 3', sans-serif; color: #1a1a2e; background: #ffffff; transition: border-color 0.22s ease, box-shadow 0.22s ease; outline: none; }
.ikw-auth-field input:focus { border-color: #008080; box-shadow: 0 0 0 3px rgba(0,128,128,0.12); }
.ikw-auth-remember { margin-bottom: 20px; }
.ikw-auth-check-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; cursor: pointer; }
.ikw-auth-btn { width: 100%; padding: 13px; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; font-family: 'Source Sans 3', sans-serif; cursor: pointer; letter-spacing: 0.5px; transition: background 0.22s ease, transform 0.22s ease; }
.ikw-auth-btn--gold { background: #c9a84c; color: #1a1a2e; }
.ikw-auth-btn--gold:hover { background: #b8942f; transform: translateY(-1px); }
.ikw-auth-btn--teal { background: #008080; color: #ffffff; }
.ikw-auth-btn--teal:hover { background: #006666; transform: translateY(-1px); }
.ikw-auth-lost { text-align: center; font-size: 13px; color: #888888; margin-top: 14px; margin-bottom: 0; }
.ikw-auth-lost a { color: #008080; text-decoration: none; font-weight: 600; }
.ikw-auth-lost a:hover { text-decoration: underline; }
.ikw-auth-required { color: #c0392b; }
.ikw-auth-privacy { font-size: 12px; color: #888888; margin-bottom: 16px; line-height: 1.6; }
.ikw-auth-privacy a { color: #008080; text-decoration: none; }
.ikw-auth-privacy a:hover { text-decoration: underline; }

@media (max-width: 768px) { .ikw-auth-grid { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 480px) { .ikw-auth-col { padding: 24px 20px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   CERTIFICATE BANNER
   ═══════════════════════════════════════════════════════════════════════════ */

.inkwell-cert-banner { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%); border: 2px solid #c9a84c; border-radius: 8px; padding: 20px 24px; margin: 24px 0; box-shadow: 0 8px 40px rgba(0,0,0,0.18); animation: inkwell-fadein 0.4s ease; }
.inkwell-cert-banner .inkwell-cert-icon { font-size: 36px; flex-shrink: 0; }
.inkwell-cert-banner .inkwell-cert-text { flex: 1; }
.inkwell-cert-banner .inkwell-cert-text strong { display: block; font-size: 17px; color: #c9a84c; margin-bottom: 4px; }
.inkwell-cert-banner .inkwell-cert-text span { font-size: 14px; color: #d0d0d0; }
.inkwell-cert-btn { display: inline-block; background: #c9a84c; color: #1a1a2e !important; font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: 4px; text-decoration: none !important; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
.inkwell-cert-btn:hover { background: #e0bf6a; }

@media (max-width: 600px) { .inkwell-cert-banner { flex-direction: column; text-align: center; } .inkwell-cert-btn { width: 100%; text-align: center; } }

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes inkwell-fadein { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ikw-card-expand { from { opacity: 0; } to { opacity: 1; } }
.ikw-card.open .ikw-card-expanded { animation: ikw-card-expand 0.2s ease; }

/* ═══════════════════════════════════════════════════════════════════════════
   END INKWELL DIGITAL ACADEMY MASTER STYLESHEET v5.0
   ═══════════════════════════════════════════════════════════════════════════ */

/* =============================================================================
   COURSE CATALOG PAGE OVERRIDES
   Scoped to body.page-id-3049 only -- homepage cards untouched
   ============================================================================= */

body.page-id-3049 .entry-header,
body.page-id-3049 .page-hero-section,
body.page-id-3049 .kadence-page-header,
body.page-id-3049 .wp-block-kadence-header,
body.page-id-3049 .site-main > .entry-header {
    display: none !important;
}

body.page-id-3049 .ikw-catalog-hero {
    background: #1a1a2e;
    padding: 60px 40px 50px;
    text-align: center;
    margin-bottom: 0;
}

body.page-id-3049 .ikw-catalog-hero h1 {
    color: #c9a84c;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

body.page-id-3049 .ikw-catalog-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin: 0;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

body.page-id-3049 .courses-section {
    background: #f4f4f4 !important;
    padding: 50px 40px !important;
}

body.page-id-3049 .courses-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    justify-content: unset !important;
    align-items: unset !important;
    max-width: 1200px;
    margin: 0 auto;
}

body.page-id-3049 .course-card {
    min-width: unset !important;
    max-width: unset !important;
    flex: unset !important;
    width: 100% !important;
    padding: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 0 !important;
    overflow: hidden;
    background: #ffffff !important;
    border: 2px solid #c9a84c !important;
    border-radius: 12px !important;
}

body.page-id-3049 .course-card > img {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px 12px 0 0 !important;
    height: auto !important;
}

body.page-id-3049 .course-card-title {
    border-top: 3px solid #c9a84c;
    padding: 18px 20px 8px !important;
    font-size: 1rem !important;
    color: #1a1a2e !important;
    text-align: left !important;
}

body.page-id-3049 .course-card-description {
    padding: 0 20px 16px !important;
    text-align: left !important;
    color: #444 !important;
    font-size: 0.88rem !important;
}

body.page-id-3049 .course-card-btn {
    margin: auto 20px 20px !important;
    align-self: flex-start !important;
}

body.page-id-3049 .course-card-badge {
    top: 12px !important;
    left: 12px !important;
    transform: none !important;
}

@media (max-width: 900px) {
    body.page-id-3049 .courses-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    body.page-id-3049 .courses-section {
        padding: 40px 24px !important;
    }
}

@media (max-width: 560px) {
    body.page-id-3049 .courses-grid {
        grid-template-columns: 1fr !important;
    }
    body.page-id-3049 .ikw-catalog-hero {
        padding: 40px 20px 36px !important;
    }
    body.page-id-3049 .ikw-catalog-hero h1 {
        font-size: 1.8rem !important;
    }
}
/* COURSE CATALOG PAGE OVERRIDES */
body.page-id-3049 .entry-header,body.page-id-3049 .page-hero-section,body.page-id-3049 .kadence-page-header,body.page-id-3049 .site-main > .entry-header{display:none !important;}
body.page-id-3049 .ikw-catalog-hero{background:#1a1a2e;padding:60px 40px 50px;text-align:center;margin-bottom:0;}
body.page-id-3049 .ikw-catalog-hero h1{color:#c9a84c;font-size:2.4rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;margin:0 0 12px;}
body.page-id-3049 .ikw-catalog-hero p{color:rgba(255,255,255,0.75);font-size:1.05rem;margin:0 auto;max-width:540px;}
body.page-id-3049 .courses-section{background:#f4f4f4 !important;padding:50px 40px !important;}
body.page-id-3049 .courses-grid{display:grid !important;grid-template-columns:repeat(3,1fr) !important;gap:32px !important;justify-content:unset !important;align-items:unset !important;max-width:1200px;margin:0 auto;}
body.page-id-3049 .course-card{min-width:unset !important;max-width:unset !important;flex:unset !important;width:100% !important;padding:0 !important;text-align:left !important;align-items:flex-start !important;gap:0 !important;overflow:hidden;background:#ffffff !important;border:2px solid #c9a84c !important;border-radius:12px !important;}
body.page-id-3049 .course-card > img{width:100% !important;aspect-ratio:16/9 !important;object-fit:cover !important;display:block !important;border-radius:12px 12px 0 0 !important;height:auto !important;}
body.page-id-3049 .course-card-title{border-top:3px solid #c9a84c;padding:18px 20px 8px !important;font-size:1rem !important;color:#1a1a2e !important;text-align:left !important;}
body.page-id-3049 .course-card-description{padding:0 20px 16px !important;text-align:left !important;color:#444 !important;font-size:0.88rem !important;}
body.page-id-3049 .course-card-btn{margin:auto 20px 20px !important;align-self:flex-start !important;}
body.page-id-3049 .course-card-badge{top:12px !important;left:12px !important;transform:none !important;}
@media(max-width:900px){body.page-id-3049 .courses-grid{grid-template-columns:repeat(2,1fr) !important;}body.page-id-3049 .courses-section{padding:40px 24px !important;}}
@media(max-width:560px){body.page-id-3049 .courses-grid{grid-template-columns:1fr !important;}body.page-id-3049 .ikw-catalog-hero{padding:40px 20px 36px !important;}body.page-id-3049 .ikw-catalog-hero h1{font-size:1.8rem !important;}}
