/* 
   Sirmium Capital — NYC Honor Collaboration Shared Styles
   Used for: niche-guides subpages
   Design System: Utility-first, Gold/Slate palette
*/

/* --- Shared Layout & Containers --- */
.u-hero-subpage.cinematic {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 6rem;
    color: var(--white);
}

.article-hero-inner {
    max-width: 800px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Shared Components --- */
.article-quote.u-nyc-honor-style {
    text-align: left;
    background: rgba(15, 23, 42, 0.4);
    border-left: 2px solid var(--gold);
    padding: 2rem;
    margin: 2rem 0;
}

.article-quote.u-nyc-honor-style ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.article-quote.u-nyc-honor-style li {
    margin-bottom: 1rem;
}

.article-quote.u-nyc-honor-style li:last-child {
    margin-bottom: 0;
}

.article-callout.u-nyc-honor-style {
    background: rgba(197, 160, 89, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

/* --- "Loud" / Editorial Style (NIL Tax Education) --- */
.hero-loud {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 0 2rem;
    border-bottom: 2px solid var(--gold);
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541252260730-0412e3e2108e?q=80&w=2000') center/cover;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.highlight-loud {
    color: var(--gold);
    font-style: italic;
}

.content-grid.article-content {
    background: var(--slate-900);
    padding: 4rem;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(197, 160, 89, 0.2);
}

.tax-alert {
    background: rgba(139, 94, 60, 0.1);
    border: 2px solid var(--gold-700);
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
}

.tax-alert::before {
    content: "CRITICAL";
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gold-700);
    color: white;
    padding: 2px 12px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.tax-alert.urgent {
    border-color: var(--red-500);
}

.tax-alert.urgent::before {
    background: var(--red-500);
    content: "UPDATE";
}

.stat-loud {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(197, 160, 89, 0.1);
    padding: 2rem;
    text-align: center;
    border-radius: 4px;
}

.btn-loud {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1.5rem 3.5rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.btn-loud:hover {
    background: var(--white);
    transform: translateY(-5px);
}

/* --- Curriculum Specifics --- */
.curriculum-grid-gap {
    gap: 2rem;
}

.u-grad-text-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- Showcase Sections --- */
.u-grid-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .u-grid-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.article-content {
        padding: 2rem;
        margin: -2rem 1rem 3rem;
    }
}

.text-sm-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate-300);
}

.curriculum-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--slate-300);
}

/* Specific Hero Backgrounds */
.hero-financial-planning {
    background-image: url('../../assets/images/financial_planning_hero.webp');
}

.hero-budgeting {
    background-image: url('../../assets/images/budgeting_hero.webp');
}

.hero-compound-interest {
    background-image: url('../../assets/images/compound_interest_hero.webp');
}

.hero-nil-tax-strategy {
    background-image: url('../../assets/images/nil_tax_strategy_hero.webp');
}