body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #f0f2f5;
    color: #1c1e21;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Strips & Header */
.top-nav-strip {
    background-color: #1a1a1a;
    color: #aeaeae;
    font-size: 0.8rem;
    padding: 8px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.strip-flex {
    display: flex;
    justify-content: space-between;
}

.main-network-header {
    background-color: #ffffff;
    padding: 25px 0;
    border-bottom: 1px solid #e1e4e8;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box a {
    color: #0b2240;
    font-size: 2.5rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -1.5px;
}

.logo-box a span {
    color: #0056b3;
}

.ad-placeholder-banner {
    width: 728px;
    height: 90px;
    background: #f4f6f8;
    border: 1px dashed #bcccdc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #829ab1;
    font-size: 0.85rem;
}

/* Ticker Alerts */
.ticker-bar-system {
    background-color: #0b2240;
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 4px solid #0056b3;
}

.bar-flex {
    display: flex;
    align-items: center;
}

.ticker-alert-tag {
    background: #0056b3;
    padding: 2px 8px;
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 2px;
    margin-right: 15px;
}

/* Magazine Grid Structure */
.hero-magazine-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.master-block {
    position: relative;
    height: 480px;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.master-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.master-block:hover img {
    transform: scale(1.02);
    opacity: 0.7;
}

.master-text-scaffold {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    color: #ffffff;
}

.master-text-scaffold h2 {
    font-size: 2.3rem;
    margin: 10px 0;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.badge-category {
    background: #0056b3;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    text-transform: uppercase;
}

/* Stack Columns */
.stack-block-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stack-card-item {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    height: 230px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stack-thumbnail-box {
    width: 45%;
}

.stack-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-meta-box {
    width: 55%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stack-meta-box h3 a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Lower Section Split styling */
.split-segment-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.section-title-strip {
    border-bottom: 3px solid #0b2240;
    margin-bottom: 25px;
    padding-bottom: 5px;
}

.section-title-strip span {
    background: #0b2240;
    color: white;
    padding: 5px 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.card-feed-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feed-grid-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.card-photo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-narrative {
    padding: 15px;
}

.card-narrative h4 a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
}

/* Sidebar Styling */
.sidebar-block-widget {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-top: 4px solid #0b2240;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-block-widget.ad-spot {
    height: 250px;
    background: #f4f6f8;
    border: 1px dashed #bcccdc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #829ab1;
}

.network-footer {
    background: #1a1a1a;
    color: #aeaeae;
    padding: 30px 0;
    margin-top: 60px;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-magazine-grid, .split-segment-layout { grid-template-columns: 1fr; }
    .ad-placeholder-banner { display: none; }
}
@media (max-width: 600px) {
    .card-feed-matrix { grid-template-columns: 1fr; }
    .stack-card-item { flex-direction: column; height: auto; }
    .stack-thumbnail-box, .stack-meta-box { width: 100%; }
}