/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary: #000000;
    --secondary: #666;
    --accent: #d4af37;
    --background: #ffffff;
    --surface: #f4f4f4;
    --border: #e0e0e0;
    --text-main: #111111;
    --text-muted: #555555;

    /* Reader Mode Palette */
    --rm-bg: #fdf6e3;
    --rm-text: #1a1a1a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.5;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.serif {
    font-family: 'Playfair Display', serif;
    text-transform: none;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Redesign */
header {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.mobile-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 900;
    color: #000;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    flex-grow: 1;
    margin-left: 1.5rem;
}

.header-nav::-webkit-scrollbar {
    display: none;
}

.header-nav a {
    white-space: nowrap;
}

.header-nav a:hover {
    color: #000;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-subscribe {
    background: #c3d9e8;
    color: #4a6a8a;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Reader Mode persistence fixes */
#reader-mode-toggle {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.2rem;
    z-index: 2000;
}

body.reader-mode #reader-mode-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    color: var(--rm-text);
}

/* Grid Sections */
.section-title {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlight Cards */
.top-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* More space for hero text */
    gap: 2rem;
    margin-bottom: 5rem;
    margin-top: 5rem;
    align-items: start;
    /* Standard start alignment */
    overflow: visible;
}

.hero-large {
    display: flex;
    flex-direction: column;
}

.hero-large h1 {
    font-size: 5.5rem;
    /* Larger hero text */
    line-height: 0.85;
    margin-bottom: 2rem;
    font-weight: 900;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.hero-text-side {
    max-width: 50%;
}

.hero-image-side {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-large img {
    width: 550px;
    /* Specific size to match design */
    height: 550px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.9;
    /* Removed absolute positioning to prevent overlap */
}

.continue-reading {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-top: 1rem;
}

.side-rails {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-left: 1px solid #f0f0f0;
    /* Clearer separation */
    padding-left: 2rem;
}

.mini-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: start;
}

.mini-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

/* Categories Overlays */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.cat-item {
    position: relative;
    background: #f0f0f0;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.cat-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cat-item h3 {
    z-index: 2;
    color: #000;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
}

.cat-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

/* Clubs Ranking */
.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.ranking-table th {
    text-align: left;
    color: #888;
    padding: 0.5rem;
    font-weight: 400;
}

.ranking-table td {
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

/* Newsletter Overlay */
.newsletter-box {
    background: #e8e8e8;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.newsletter-box h2 {
    font-size: 3rem;
    width: 50%;
}

.newsletter-box input {
    padding: 1rem;
    border: 1px solid #ccc;
    width: 300px;
}

.newsletter-box button {
    background: #333;
    color: #fff;
    padding: 1rem 1.5rem;
    border: none;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .top-story-grid {
        grid-template-columns: 1fr;
    }

    .hero-large h1 {
        font-size: 2.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-top {
        flex-wrap: wrap;
    }

    #mobile-menu-btn {
        display: block !important;
    }

    .mobile-top-row {
        width: 100%;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #f8fafc;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 4px;
        order: 3;
        /* Push below the header top items */
    }

    .header-nav.active {
        display: flex !important;
    }

    /* Hero Responsive Adjustments V3 */
    .hero-v3-dark {
        padding: 4rem 1rem;
    }

    .hero-v3-content-grid {
        flex-direction: column;
    }

    .hero-v3-left {
        max-width: 100%;
        text-align: left;
    }

    .hero-v3-left h1 {
        font-size: 2.8rem;
    }

    .hero-v3-left p {
        max-width: 100%;
    }

    .hero-v3-btn {
        margin: 0;
    }

    .hero-v3-center-img {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        height: auto;
        opacity: 0.8;
        margin-bottom: 2rem;
    }

    .hero-v3-watermark {
        font-size: 8rem;
        top: 10%;
        bottom: auto;
    }

    .hero-v3-right {
        max-width: 100%;
        margin-top: 3rem;
    }

    .hero-v3-slider-wrap {
        margin-bottom: 1rem;
    }

    .hero-v3-socials {
        justify-content: flex-start;
    }
}

/* Reader Mode Overrides */
body.reader-mode {
    background-color: var(--rm-bg) !important;
    color: var(--rm-text) !important;
}

body.reader-mode footer,
body.reader-mode .newsletter-complex-banner,
body.reader-mode .hero-watermark,
body.reader-mode .floating-player-graphic,
body.reader-mode .category-tag-float,
body.reader-mode .badge-outline,
body.reader-mode .today-label,
body.reader-mode .wide-epic-banner::before,
body.reader-mode .wide-epic-banner img,
body.reader-mode .cycling-focal-card img,
body.reader-mode .mosaic-cell img,
body.reader-mode .hero-image-wrap>img,
body.reader-mode .hero-content h1::after {
    display: none !important;
}

body.reader-mode header {
    background-color: var(--rm-bg) !important;
    border-bottom-color: #d1d5db !important;
}

body.reader-mode .main-content {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

body.reader-mode .mosaic-cell,
body.reader-mode .mosaic-label-box,
body.reader-mode .today-block,
body.reader-mode .hero-footer-info,
body.reader-mode .standings-table,
body.reader-mode .standings-table th,
body.reader-mode .standings-table td,
body.reader-mode .nav-container>div {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--rm-text) !important;
    box-shadow: none !important;
    border-color: #d1d5db !important;
}

body.reader-mode h1,
body.reader-mode h2,
body.reader-mode h3,
body.reader-mode h4,
body.reader-mode p,
body.reader-mode span,
body.reader-mode a {
    color: var(--rm-text) !important;
    text-shadow: none !important;
}

/* Flatten Grids */
body.reader-mode .hero-grid,
body.reader-mode .category-mosaic-system,
body.reader-mode .trending-layout,
body.reader-mode .sub-data-grid,
body.reader-mode .article-system-grid {
    display: block !important;
}

/* Adjust components for block layout */
body.reader-mode .hero-content {
    padding-left: 0;
    margin-bottom: 2rem;
}

body.reader-mode .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

body.reader-mode .wide-epic-banner,
body.reader-mode .cycling-focal-card,
body.reader-mode .mosaic-cell,
body.reader-mode .article-framer {
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
    border-bottom: 1px solid #d1d5db !important;
    padding-bottom: 2rem !important;
}

body.reader-mode .cycling-overlay,
body.reader-mode .epic-content-box {
    position: relative !important;
    padding: 0 !important;
    background: none !important;
}

body.reader-mode .hero-image-wrap {
    min-height: auto;
    margin-top: 2rem;
}

body.reader-mode .today-block {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
}

body.reader-mode .article-thumb {
    height: auto !important;
}

body.reader-mode img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 4px;
}

/* =========================================
   SPORT NEWS PIXEL-PERFECT HOME PAGE
   ========================================= */

/* Ultimate Hero V3 Dark Theme */
.hero-v3-dark {
    position: relative;
    background-color: #1a1a1b;
    color: #ffffff;
    min-height: 25vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 1.5rem 0;
    border-bottom: 4px solid #ef4444;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.hero-v3-watermark {
    position: absolute;
    bottom: -40%;
    left: -2%;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.8;
    z-index: 0;
    text-transform: lowercase;
    pointer-events: none;
    white-space: nowrap;
}

@keyframes floatPlayer {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-v3-center-img {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-35%);
    height: 120%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    animation: floatPlayer 6s ease-in-out infinite;
    filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.6));
}

.hero-v3-content-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
}

.hero-v3-left {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-v3-tag {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-v3-left h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: none;
    letter-spacing: -1px;
}

.hero-v3-left p {
    font-size: 0.85rem;
    color: #a3a3a3;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.hero-v3-btn {
    background-color: #ef4444;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px -5px rgba(239, 68, 68, 0.4);
    transition: 0.3s;
}

.hero-v3-btn:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.6);
    color: #fff;
}

.hero-v3-scroll {
    display: none;
}

/* Right Side - Slider */
.hero-v3-right {
    max-width: 280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-v3-right h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: none;
    letter-spacing: -0.5px;
}

.hero-v3-slider-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 4px;
}

.hero-v3-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-v3-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-v3-slide img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.hero-v3-slide-meta {
    font-size: 0.7rem;
    color: #a3a3a3;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.hero-v3-slide-meta strong {
    color: #ffffff;
    text-transform: uppercase;
}

.hero-v3-slide h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
    transition: 0.2s;
}

.hero-v3-slide a:hover h3 {
    color: #ef4444;
}

.hero-v3-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: flex-end;
}

.hero-v3-socials a {
    color: #ffffff;
    font-size: 1.1rem;
    transition: 0.3s;
    opacity: 0.8;
}

.hero-v3-socials a:hover {
    opacity: 1;
    color: #ef4444;
}

/* Reusable helpers */
.news-meta-small {
    font-size: 0.65rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.25rem;
}

.news-card-horizontal h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #0f172a;
    text-transform: none;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Category Mosaic Grid */
.trending-header {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.category-mosaic-system {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.mosaic-cell {
    position: relative;
    overflow: hidden;
    display: flex;
    background: #f1f5f9;
}

.mosaic-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-label-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.mosaic-label-box.dark {
    background: #f8fafc;
}

.mosaic-label-box h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #64748b;
    margin: 0;
    text-align: center;
    line-height: 1.1;
    word-break: break-word;
}

/* Trending Layout */
.trending-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.cycling-focal-card {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.cycling-focal-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cycling-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
}

.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Wide Epic Banner */
.wide-epic-banner-wrapper {
    width: 100%;
    margin-bottom: 4rem;
}

.wide-epic-banner {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.wide-epic-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    background: #000;
}

.wide-epic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    /* Fallback dark */
    z-index: -1;
}

.epic-content-box {
    position: relative;
    z-index: 1;
    width: 100%;
}

.epic-content-box h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
}

/* Sub Data Grid */
.sub-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.standings-table th {
    background: #e2e8f0;
    color: #475569;
    font-size: 0.7rem;
    padding: 0.8rem 0.5rem;
    text-align: center;
}

.standings-table th:first-child,
.standings-table td:first-child {
    text-align: left;
    padding-left: 1rem;
}

.standings-table td {
    padding: 0.8rem 0.5rem;
    font-size: 0.8rem;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    font-weight: 600;
}

/* Sports Article Grid */
.article-system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.article-thumb {
    position: relative;
    height: 220px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag-float {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Newsletter Overlay */
.newsletter-complex-banner {
    background: #f1f5f9;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.newsletter-complex-banner h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #94a3b8;
    max-width: 500px;
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.input-group-premium {
    display: flex;
    max-width: 400px;
    background: white;
    border: 1px solid #cbd5e1;
    position: relative;
    z-index: 1;
}

.input-group-premium input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
}

.input-group-premium button {
    background: #0f172a;
    color: white;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.floating-player-graphic {
    position: absolute;
    bottom: -4rem;
    right: 5%;
    height: 160%;
    z-index: 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    object-fit: contain;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image-wrap>img {
        width: 100%;
        max-width: none;
    }

    .category-mosaic-system {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-player-graphic {
        right: -5%;
        height: 120%;
        opacity: 0.5;
    }
}

@media (max-width: 768px) {

    /* Header Wrap Fix */
    .header-top {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1rem;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
        /* Changed to start on mobile for tidiness */
        flex-wrap: wrap;
        /* Just in case items are wide */
        gap: 0.5rem;
    }

    .logo-main {
        width: 100%;
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-watermark {
        display: none;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .hero-footer-info {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-image-wrap {
        margin-top: 3rem;
        min-height: 300px;
    }

    .today-block {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 2rem;
        box-shadow: none;
        border: 1px solid #f1f5f9;
    }

    .category-mosaic-system {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(150px, auto);
    }

    .mosaic-label-box h3 {
        font-size: 1.2rem;
    }

    .trending-layout,
    .sub-data-grid,
    .article-system-grid {
        grid-template-columns: 1fr;
    }

    .epic-content-box h2 {
        font-size: 2rem;
    }

    .epic-content-box p {
        font-size: 0.9rem;
    }

    .ranking-table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .standings-table th,
    .standings-table td {
        padding: 0.5rem;
    }

    .newsletter-complex-banner {
        text-align: center;
    }

    .newsletter-complex-banner h2 {
        margin-left: auto;
        margin-right: auto;
        font-size: 2.5rem;
    }

    .input-group-premium {
        margin: 0 auto;
    }
}