/* BLOG ARTICLE SPECIFIC STYLES */

.article-hero {
    width: 100%;
    height: 80vh; /* Cinematic height for images */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--espresso);
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-hero:hover img {
    transform: scale(1.05);
}

/* HERO OVERLAYS */
.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-bone), transparent);
}

.breakdown-badge {
    position: absolute;
    top: 64px;
    right: 64px;
    background: var(--oxblood);
    color: #fff;
    padding: 14px 28px;
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 2px;
}

.article-meta {
    padding: 120px 0 80px;
    text-align: center;
    background: var(--bg-bone);
    position: relative;
    z-index: 5;
}

.article-meta h1 {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    color: var(--graphite);
    max-width: 900px;
    margin: 0 auto 32px;
    letter-spacing: -0.03em;
}

.article-meta-info {
    font-family: var(--font-secondary);
    font-size: 11px;
    color: var(--graphite);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.6;
}

.article-meta-info span {
    margin: 0 16px;
    opacity: 0.3;
}

/* Content Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 240px;
}

.article-content p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--graphite);
    margin-bottom: 32px;
    opacity: 0.85;
}

/* Drop Cap for Long Essays */
.article-content.essay p:first-of-type::first-letter {
    font-family: var(--font-primary);
    font-size: 100px;
    float: left;
    line-height: 0.7;
    margin-right: 16px;
    margin-top: 10px;
    color: var(--graphite);
}

.article-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--graphite);
    margin: 64px 0 32px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.article-content h3 {
    font-family: var(--font-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--oxblood);
    margin: 60px 0 24px;
    font-weight: 700;
}

.article-content blockquote {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 24px;
    line-height: 1.4;
    color: var(--oxblood);
    margin: 64px 0;
    padding: 32px;
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
    text-align: center;
}

.article-content li {
    font-size: 20px;
    line-height: 1.7;
    color: var(--graphite);
    margin-bottom: 20px;
    opacity: 0.85;
}

/* Specific Formatting for Brand Breakdowns */
.breakdown-box {
    background: var(--stone);
    padding: 64px;
    margin: 80px 0;
    border-radius: 4px;
}

.breakdown-box h4 {
    font-family: var(--font-secondary);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 24px;
    font-weight: 800;
}
