/* ============================================
   THE RINK REPORT — Article Styles
   Weekly edition pages only
   ============================================ */

/* Page entrance animation */
.page-wrapper {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Info Strip */
.info-strip {
    background: var(--off-white);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.date-stamp {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content override */
.content {
    background: white;
}

/* Lead Story */
.lead-story {
    margin-bottom: 60px;
}

.kicker {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--electric-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.headline {
    font-family: 'Syne', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 25px;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.dek {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.byline {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--charcoal);
}

/* Article Body */
.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    column-count: 2;
    column-gap: 50px;
    column-rule: 1px solid #e0e0e0;
}

.article-body p {
    margin-bottom: 25px;
    break-inside: avoid;
}

.article-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--charcoal);
    margin: 50px 0 30px 0;
    letter-spacing: -1px;
    position: relative;
    padding-left: 25px;
    column-span: all;
    break-after: avoid;
}

.article-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--electric-pink), var(--deep-purple));
    border-radius: 3px;
}

.article-body h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 35px 0 20px 0;
    padding-left: 20px;
    border-left: 4px solid var(--neon-green);
    break-after: avoid;
}

.article-body strong {
    font-weight: 700;
    color: var(--electric-pink);
}

@media (max-width: 900px) {
    .article-body {
        column-count: 1;
    }
}

/* Feature Boxes — Shared */
.box-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--electric-pink);
    margin-bottom: 15px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.hot-take p,
.cold-take p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.hot-take strong,
.cold-take strong {
    font-weight: 700;
    color: inherit;
}

/* Hot Take */
.hot-take {
    background: linear-gradient(135deg, #fff5f7, #ffe8f0);
    border: 3px solid var(--electric-pink);
    padding: 40px;
    margin: 45px 0;
    position: relative;
    column-span: all;
}

.hot-take::before {
    content: '\1F525';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 36px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    border: 3px solid var(--electric-pink);
    z-index: 1;
}

/* Cold Take */
.cold-take {
    background: linear-gradient(135deg, #f0f7ff, #e1f0ff);
    border: 3px solid var(--cyber-blue);
    padding: 40px;
    margin: 45px 0;
    position: relative;
    column-span: all;
}

.cold-take::before {
    content: '\1F976';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 36px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    border: 3px solid var(--cyber-blue);
    z-index: 1;
}

.cold-take .box-title {
    color: var(--cyber-blue);
}

/* Transactions Box */
.transactions-box {
    background: linear-gradient(135deg, #f5fff5, #e8ffe8);
    border: 3px solid var(--neon-green);
    padding: 40px;
    margin: 45px 0;
    position: relative;
    column-span: all;
}

.transactions-box::before {
    content: '\1F4CB';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 36px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    border: 3px solid var(--neon-green);
    z-index: 1;
}

.transactions-box .box-title {
    color: #00a86b;
}

.transactions-box p,
.trade-alert p {
    margin-bottom: 20px;
}


/* Trade Alert */
.trade-alert {
    background: linear-gradient(135deg, #fff5e6, #ffe8cc);
    border: 3px solid #ff8c00;
    padding: 40px;
    margin: 45px 0;
    position: relative;
    column-span: all;
}

.trade-alert::before {
    content: '\1F6A8';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 36px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    border: 3px solid #ff8c00;
    z-index: 1;
}

.trade-alert .box-title {
    color: #ff8c00;
}

/* Stats Module */
.stats-module {
    background: var(--charcoal);
    color: white;
    padding: 50px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    column-span: all;
}

.stats-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--cyber-blue));
}

.stats-title {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.stats-title span {
    color: var(--neon-green);
}

.stats-module p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

/* Pull Quote */
.pullquote {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--charcoal);
    text-align: center;
    padding: 50px 80px;
    margin: 50px 0;
    position: relative;
    border-top: 4px solid var(--charcoal);
    border-bottom: 4px solid var(--charcoal);
    column-span: all;
}

.pullquote::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--electric-pink);
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Standings */
.standings-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 4px solid var(--charcoal);
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--electric-pink), var(--deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.division-box {
    background: var(--off-white);
    padding: 30px;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.division-box:hover {
    border-color: var(--electric-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.1);
}

.division-title {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--charcoal);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--electric-pink);
}

.team-listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.team-listing:hover {
    padding-left: 10px;
    border-left: 3px solid var(--neon-green);
}

.team-listing:last-child {
    border-bottom: none;
}

.team-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
}

.record {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #666;
}

.eliminated {
    opacity: 0.6;
}

/* Correction Box */
.correction-box {
    background: linear-gradient(135deg, #fff8f0, #ffe8d6);
    border: 3px solid #e63946;
    padding: 40px;
    margin: 0 0 0 0;
    position: relative;
    column-span: all;
}

.correction-box::before {
    content: '\26A0\FE0F';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 36px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    border: 3px solid #e63946;
    z-index: 1;
}

.correction-box .box-title {
    color: #e63946;
}

.correction-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.correction-box p:last-child {
    margin-bottom: 0;
}

/* Responsive — Article */
@media (max-width: 768px) {
    .headline {
        font-size: 42px;
    }

    .info-strip {
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
    }

    .pullquote {
        font-size: 24px;
        padding: 40px 30px;
    }
}
