@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=ZCOOL+KuaiLe&display=swap');

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

:root {
    --primary: #ff6d00;
    --primary-dark: #e65100;
    --primary-light: #ffab40;
    --secondary: #2196f3;
    --secondary-dark: #1565c0;
    --bg: #fff8e1;
    --bg-card: #ffffff;
    --text: #263238;
    --text-light: #546e7a;
    --text-muted: #90a4ae;
    --border: #ffe0b2;
    --badge-hot: #ff1744;
    --badge-new: #00c853;
    --badge-exclusive: #d500f9;
    --shadow-sm: 0 2px 8px rgba(255, 109, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(255, 109, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(255, 109, 0, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ========== Header ========== */
.site-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 28px;
    color: #fff;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a:hover {
    color: #fff;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.main-nav a {
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
}

/* ========== Banner ========== */
.banner {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9100 50%, var(--secondary) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.banner .container {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 56px;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner .banner-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 15px;
    opacity: 0.9;
}

.banner .banner-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========== Section Title ========== */
.section {
    padding: 56px 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 28px;
    color: var(--text);
}

.section-title .title-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.section-title .title-sub {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: normal;
    font-family: 'Noto Sans SC', sans-serif;
    margin-left: auto;
}

.section-title a.more-link {
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.section-title a.more-link:hover {
    color: var(--secondary-dark);
}

/* ========== News Cards Grid ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card .card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe0b2, #fff3e0);
}

.news-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .card-thumb img {
    transform: scale(1.05);
}

.news-card .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.news-card .card-badge.hot {
    background: var(--badge-hot);
    animation: glow 2s ease-in-out infinite;
}

.news-card .card-badge.new {
    background: var(--badge-new);
}

.news-card .card-badge.exclusive {
    background: var(--badge-exclusive);
}

.news-card .card-badge.breaking {
    background: var(--primary);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 23, 68, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 23, 68, 0.9); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.news-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card .card-category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.news-card .card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .card-title {
    color: var(--primary);
}

.news-card .card-excerpt {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}

.news-card .card-meta .heat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--badge-hot);
    font-weight: 700;
}

.news-card .card-meta .time {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========== Featured Card (Exclusive) ========== */
.news-card.featured {
    grid-column: span 2;
    flex-direction: row;
}

.news-card.featured .card-thumb {
    aspect-ratio: auto;
    width: 45%;
    min-height: 260px;
}

.news-card.featured .card-body {
    flex: 1;
    padding: 28px;
}

.news-card.featured .card-title {
    font-size: 24px;
}

/* ========== Breaking News Timeline ========== */
.breaking-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.breaking-list::before {
    content: '';
    position: absolute;
    left: 160px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 3px;
}

.breaking-item {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    position: relative;
}

.breaking-item .breaking-time {
    width: 140px;
    text-align: right;
    flex-shrink: 0;
}

.breaking-item .breaking-time .time {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 20px;
    color: var(--primary);
    display: block;
}

.breaking-item .breaking-time .date {
    font-size: 13px;
    color: var(--text-muted);
}

.breaking-item .breaking-dot {
    position: absolute;
    left: 154px;
    top: 28px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--primary);
    z-index: 2;
}

.breaking-item .breaking-dot.hot {
    background: var(--badge-hot);
    box-shadow: 0 0 0 3px var(--badge-hot), 0 0 12px rgba(255, 23, 68, 0.5);
}

.breaking-item .breaking-content {
    flex: 1;
    background: var(--bg-card);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.breaking-item .breaking-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.breaking-item .breaking-content .breaking-tag {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
}

.breaking-item .breaking-content h3 {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
}

.breaking-item .breaking-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========== Category Cards ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card .cat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.category-card h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.category-card .cat-count {
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ========== Exclusive Magazine Layout ========== */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.magazine-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.magazine-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.magazine-card .mag-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe0b2, #fff3e0);
}

.magazine-card .mag-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magazine-card .mag-body {
    padding: 24px;
}

.magazine-card .mag-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--badge-exclusive), #9c27b0);
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.magazine-card h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.magazine-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.magazine-card .mag-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ========== Heat Badge ========== */
.heat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--badge-hot), #ff5252);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.heat-badge::before {
    content: '🔥';
    font-size: 14px;
}

/* ========== Contact Form ========== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
}

.contact-info .info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info .info-item:last-child {
    border-bottom: none;
}

.contact-info .info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.contact-info .info-content h4 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-info .info-content p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: 'Noto Sans SC', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Noto Sans SC', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 109, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 109, 0, 0.4);
    color: #fff;
}

/* ========== About Page ========== */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 48px;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.mission-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.mission-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mission-card .mission-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.mission-card h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 8px;
}

.mission-card p {
    font-size: 14px;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-card .team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.team-card h4 {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.team-card .team-desc {
    font-size: 13px;
    color: var(--text-light);
}

/* ========== Disclaimer ========== */
.disclaimer {
    background: #fff3e0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 40px;
}

.disclaimer h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disclaimer p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ========== Footer ========== */
.site-footer {
    background: linear-gradient(180deg, #263238 0%, #37474f 100%);
    color: #eceff1;
    padding: 56px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #b0bec5;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0bec5;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 26px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #78909c;
}

.footer-bottom a {
    color: #b0bec5;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
    .news-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }

    .news-card.featured .card-thumb {
        width: 100%;
        min-height: 200px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .breaking-list::before {
        left: 120px;
    }

    .breaking-item .breaking-dot {
        left: 114px;
    }

    .breaking-item .breaking-time {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        display: block;
        padding: 12px 18px;
    }

    .banner {
        padding: 48px 0;
    }

    .banner h1 {
        font-size: 36px;
    }

    .banner p {
        font-size: 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .magazine-grid {
        grid-template-columns: 1fr;
    }

    .breaking-list::before {
        left: 80px;
    }

    .breaking-item .breaking-dot {
        left: 74px;
    }

    .breaking-item .breaking-time {
        width: 60px;
    }

    .breaking-item .breaking-time .time {
        font-size: 16px;
    }

    .section {
        padding: 36px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .banner h1 {
        font-size: 28px;
    }

    .banner .banner-meta {
        flex-direction: column;
        gap: 8px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mission-section {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 22px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}