* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    border-bottom: 1px solid #ccc;
    background: #fff;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
    font-size: 12px;
    background: #f9f9f9;
}

.top-bar a {
    margin-right: 16px;
    color: #666;
}

.subscribe-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 4px 16px;
    font-size: 14px;
    cursor: pointer;
}

.main-header {
    text-align: center;
    padding: 24px 16px;
}

.logo {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: bold;
    color: #111;
}

.logo a:hover {
    text-decoration: none;
}

.tagline {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

nav {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
}

nav a {
    color: #333;
}

/* ========================================
   MAIN FLEX CONTAINER - FC1 (70%) + FC2 (30%)
   ======================================== */
.main-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 16px;
    gap: 32px;
    /* HIGHLIGHT FOR TESTING */
    outline: 4px dashed #ff0000;
    background: rgba(255, 0, 0, 0.05);
}

/* FC1: 70% width */
.fc1 {
    flex: 7;
    min-width: 0;
    /* HIGHLIGHT FOR TESTING */
    outline: 3px dashed #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

/* FC2: 30% width */
.fc2 {
    flex: 3;
    min-width: 0;
    /* HIGHLIGHT FOR TESTING */
    outline: 3px dashed #0000ff;
    background: rgba(0, 0, 255, 0.1);
}

/* ========================================
   MNC - Full width flexbox inside FC1
   ======================================== */
.mnc {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* HIGHLIGHT FOR TESTING */
    outline: 3px dashed #ff00ff;
    background: rgba(255, 0, 255, 0.05);
}

/* MNC_FC1: 45% */
.mnc_fc1 {
    flex: 45;
    min-width: 0;
    padding: 16px;
    /* HIGHLIGHT FOR TESTING */
    outline: 2px dashed #00ffff;
    background: rgba(0, 255, 255, 0.05);
}

/* MNC_FC2: 55% */
.mnc_fc2 {
    flex: 55;
    min-width: 0;
    padding: 16px;
    border-left: 1px solid #e5e5e5;
    /* HIGHLIGHT FOR TESTING */
    outline: 2px dashed #ffff00;
    background: rgba(255, 255, 0, 0.05);
}

.mnc_fc2_img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* MNC_FC3: Full width below both */
.mnc_fc3 {
    width: 100%;
    padding: 16px;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    /* HIGHLIGHT FOR TESTING */
    outline: 2px dashed #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

/* H1 Styles */
.mnc_fc1 h1 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.h1_ch1 {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
}

.h1_ch2 {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.h1_ch3 {
    display: block;
    font-size: 12px;
    color: #888;
}

/* H2 Styles (always below H1) */
.mnc_fc1 h2 {
    padding-top: 16px;
}

.h2_ch1 {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
}

.h2_ch2 {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.h2_ch3 {
    display: block;
    font-size: 12px;
    color: #888;
}

/* MNC_FC2 Styles */
.mnc_fc2 h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #111;
}

.trending-list {
    list-style: none;
}

.trending-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    color: #333;
}

/* MNC_FC3 Styles */
.mnc_fc3 p {
    font-size: 14px;
    color: #666;
}

/* Sidebar */
.sidebar {
    padding: 16px;
}

.sidebar h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #111;
}

/* Footer */
footer {
    background: #f9f9f9;
    border-top: 1px solid #ccc;
    padding: 24px;
    text-align: center;
    margin-top: 48px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-container,
    .mnc {
        flex-direction: column;
    }

    .fc1,
    .fc2,
    .mnc_fc1,
    .mnc_fc2 {
        flex: 100%;
    }

    .logo {
        font-size: 32px;
    }

    nav ul {
        gap: 12px;
    }
}
