/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
=================================
|   THEMING WITH CSS VARIABLES  |
=================================
*/

/* Default Theme (Blue) */
:root {
    --primary-color: #198754;
    --primary-color-dark: #146c43;
    --primary-text-color: #ffffff;
}

/* Topic Theme: Good News (Green) */
.theme-good-news {
    --primary-color: #198754;
    --primary-color-dark: #146c43;
}

/* Topic Theme: Aussie Viral (Orange) - Note: .breaking class has its own red */
.theme-aussie-viral {
    --primary-color: #fd7e14;
    --primary-color-dark: #d96d10;
}

/* You can add more themes for other categories like .theme-tech, .theme-community etc. */


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-left {
    display: flex;
    gap: 20px;
}

.top-right .social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    background: #333;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo h1 a {
    color: var(--primary-color);
}

.tagline {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

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

.nav-item {
    font-weight: 500;
    color: #374151;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-color);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: none;
    border: 1px solid #d1d5db;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #f3f4f6;
}

.subscribe-btn {
    background: var(--primary-color);
    color: var(--primary-text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--primary-color-dark);
}

/* Breaking News Ticker */
.breaking-news {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
}

.breaking-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.breaking-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.breaking-text {
    font-weight: 500;
    animation: scroll-text 30s linear infinite;
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Content */
.main-content {
    padding: 40px 0;
    background: #f9fafb;
}

/* Featured Section */
.featured-section {
    margin-bottom: 60px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    height: 600px;
}

.featured-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 60px 40px 40px;
    color: #fff;
}

.category-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--primary-color);
    color: var(--primary-text-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.featured-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.featured-excerpt {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
}

.featured-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.8;
}

.read-more {
    background: var(--primary-color);
    color: var(--primary-text-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: var(--primary-color-dark);
}

.featured-secondary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.secondary-story {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    height: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secondary-story:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.secondary-story img {
    width: 120px;
    height: 100%;
    object-fit: cover;
}

.secondary-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-category {
    background: var(--primary-color);
    color: var(--primary-text-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 8px;
}

.secondary-content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.secondary-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.mini-time {
    font-size: 12px;
    color: #9ca3af;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Latest News */
.latest-news {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.view-all {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.view-all:hover {
    background: var(--primary-color);
    color: var(--primary-text-color);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f3f4f6;
    transition: transform 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item:hover {
    transform: translateX(4px);
}

.news-item img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
}

.news-category {
    background: var(--primary-color);
    color: var(--primary-text-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.news-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
}

.news-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #9ca3af;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.widget {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

/* Trending Topics */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.trending-item:hover {
    background: #f9fafb;
}

.trending-number {
    background: var(--primary-color);
    color: var(--primary-text-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.trending-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.trending-count {
    font-size: 12px;
    color: #6b7280;
}

/* Most Read */
.most-read-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.most-read-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.most-read-item:hover {
    background: #f9fafb;
}

.most-read-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.most-read-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.most-read-time {
    font-size: 12px;
    color: #6b7280;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--primary-text-color);
}

.newsletter-widget .widget-title {
    color: var(--primary-text-color);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-submit {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: #f3f4f6;
}

.newsletter-stats {
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.8;
}

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

.footer-social-link {
    color: #9ca3af;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Article Page Styles */
.article-header-section {
    background: #f9fafb;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

.breadcrumb-separator {
    margin: 0 8px;
    color: #9ca3af;
}

.article-main {
    padding: 40px 0;
    background: #f9fafb;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.article-content {
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.article-header {
    margin-bottom: 40px;
}

.article-category {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.category-tag {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.category-tag.breaking {
    background: #dc2626;
    color: #fff;
}

.category-tag.primary {
    background: var(--primary-color);
    color: var(--primary-text-color);
}

.article-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.article-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 32px;
}

.article-meta-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.author-title {
    font-size: 14px;
    color: #6b7280;
}

.article-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.stat-value {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.article-hero-image {
    margin: 40px 0;
}

.article-hero-image img {
    width: 100%;
    border-radius: 8px;
}

.image-caption {
    margin-top: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 6px;
}

.image-caption p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
    font-style: italic;
}

.image-credit {
    font-size: 12px;
    color: #9ca3af;
}

.article-body {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
}

.article-lead p {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.6;
}

.article-content-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.article-content-section p {
    margin-bottom: 24px;
}

.article-quote {
    background: #f9fafb;
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.article-quote p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.article-quote cite {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.stats-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--primary-text-color);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.stats-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.stats-list li {
    font-size: 16px;
    line-height: 1.5;
}

.article-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.article-tags {
    margin-bottom: 32px;
}

.article-tags h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.tag {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: var(--primary-text-color);
}

.article-share h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.share-btn.email {
    background: #6b7280;
    color: #fff;
}

.share-btn.copy {
    background: #374151;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.related-article:hover {
    background: #f9fafb;
}

.related-article img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.related-content p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.related-time {
    font-size: 11px;
    color: #9ca3af;
}

.trending-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trending-item-sidebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.trending-item-sidebar:hover {
    background: #f9fafb;
}

.trending-content-sidebar h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.newsletter-sidebar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--primary-text-color);
}

.newsletter-sidebar .widget-title {
    color: var(--primary-text-color);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-sidebar p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-newsletter-input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.sidebar-newsletter-submit {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-newsletter-submit:hover {
    background: #f3f4f6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .featured-main {
        height: 500px;
    }
    
    .featured-secondary {
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
    }
    
    .secondary-story {
        min-width: 300px;
    }
}

@media (max-width: 1024px) {
    .content-grid,
    .article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .main-nav .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .featured-title {
        font-size: 28px;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-content {
        padding: 32px 24px;
    }
    
    .article-meta-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .article-stats {
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-item img {
        width: 100%;
        height: 200px;
    }
    
    .featured-secondary {
        flex-direction: column;
    }
    
    .secondary-story {
        min-width: auto;
        height: auto;
        flex-direction: column;
    }
    
    .secondary-story img {
        width: 100%;
        height: 150px;
    }
    
    .breaking-text {
        animation: none;
    }
    
    .share-buttons {
        justify-content: center;
    }
}