/*
Theme Name: Ayyam News - قالب أخباري احترافي
Theme URI: https://www.ayyamtunisia.online
Author: الأيام التونسية
Author URI: https://www.ayyamtunisia.online
Description: قالب إخباري احترافي عربي متكامل - تصميم عصري مستوحى من Mosaique FM مع تحكم كامل في الألوان والأقسام والبلوكات
Version: 3.1
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ayyam-news
Domain Path: /languages
Tags: news, magazine, newspaper, arabic, rtl, right-to-left, two-columns, three-columns, featured-images, custom-header, custom-menu, custom-logo, sticky-post, threaded-comments, translation-ready, blog, entertainment, footer-widgets

This theme is a professional news template inspired by modern news portals.
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Markazi Text', 'Cairo', 'Traditional Arabic', Tahoma, sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.8;
    font-size: 16px;
    direction: rtl;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--red-color, #d60000);
}

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

ul, ol {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark-color, #000);
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
    line-height: 1.4;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-date {
    font-weight: 500;
    font-size: 13px;
}

.top-bar-social {
    display: flex;
    gap: 8px;
}

.top-bar-social a {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.top-bar-social a:hover {
    opacity: 1;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: #fff;
    opacity: 0.85;
    font-size: 13px;
}

.top-bar-right a:hover {
    opacity: 1;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--header-bg, #fff);
    padding: 15px 0;
    border-bottom: 3px solid var(--red-color, #d60000);
    position: relative;
}

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

.site-logo {
    flex: 0 0 auto;
}

.site-logo h1 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Oswald', 'Markazi Text', sans-serif;
}

.site-logo h1 a {
    color: var(--red-color, #d60000);
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.site-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.header-ads {
    flex: 1;
    text-align: left;
    max-width: 470px;
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
    background: var(--red-color, #d60000);
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 12px 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 14px 16px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
    background: rgba(255,255,255,0.15);
}

/* Dropdown */
.nav-menu > li.menu-item-has-children > a::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
    font-size: 11px;
}

.nav-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    border-top: 3px solid var(--red-color, #d60000);
}

.nav-menu > li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu ul.sub-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu ul.sub-menu li:last-child {
    border-bottom: none;
}

.nav-menu ul.sub-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu ul.sub-menu a:hover {
    background: #f8f8f8;
    color: var(--red-color, #d60000);
    padding-right: 22px;
}

/* Search in nav */
.nav-search {
    display: flex;
    align-items: center;
}

.nav-search form {
    display: flex;
    align-items: center;
}

.nav-search input {
    padding: 7px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 13px;
    width: 180px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    transition: all 0.3s;
}

.nav-search input::placeholder {
    color: rgba(255,255,255,0.7);
}

.nav-search input:focus {
    background: rgba(255,255,255,0.3);
    outline: none;
    width: 220px;
}

.nav-search button {
    background: rgba(255,255,255,0.15);
    border: none;
    padding: 7px 14px;
    color: #fff;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.3s;
}

.nav-search button:hover {
    background: rgba(255,255,255,0.25);
}

/* ===== BREAKING NEWS ===== */
.breaking-news {
    background: #f8f8f8;
    border-bottom: 2px solid var(--red-color, #d60000);
    padding: 8px 0;
    overflow: hidden;
}

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breaking-label {
    background: var(--red-color, #d60000);
    color: #fff;
    padding: 4px 15px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.breaking-text {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.breaking-text a {
    color: var(--red-color, #d60000);
    margin: 0 5px;
}

.breaking-text a:hover {
    text-decoration: underline;
}

/* ===== FEATURED AREA (Hero) ===== */
.featured-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin: 25px 0 35px;
}

.featured-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
    background: #1a1a2e;
}

.featured-main .post-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-main:hover .post-thumb {
    transform: scale(1.05);
}

.featured-main .post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
}

.featured-main .post-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0 8px;
    line-height: 1.3;
}

.featured-main .post-content h2 a {
    color: #fff;
}

.featured-main .post-content h2 a:hover {
    opacity: 0.9;
}

.featured-main .post-meta {
    font-size: 13px;
    opacity: 0.85;
    display: flex;
    gap: 15px;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-side-item {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.featured-side-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.featured-side-item .post-thumb {
    width: 120px;
    height: 85px;
    object-fit: cover;
    flex-shrink: 0;
}

.featured-side-item .post-info {
    flex: 1;
    padding: 8px 5px 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-side-item .post-info h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.featured-side-item .post-info h3 a {
    color: #1a1a2e;
}

.featured-side-item .post-info h3 a:hover {
    color: var(--red-color, #d60000);
}

.featured-side-item .post-date {
    font-size: 12px;
    color: #888;
}

/* ===== CATEGORY LABEL ===== */
.cat-label {
    display: inline-block;
    background: var(--red-color, #d60000);
    color: #fff;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 6px;
    font-family: 'Oswald', sans-serif;
}

.featured-main .cat-label {
    font-size: 13px;
    padding: 4px 14px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red-color, #d60000);
}

.section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h2 i {
    color: var(--red-color, #d60000);
}

.section-header h2 a {
    color: #1a1a2e;
}

.section-header h2 a:hover {
    color: var(--red-color, #d60000);
}

.see-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--red-color, #d60000);
    transition: all 0.3s;
}

.see-all:hover {
    color: #1a1a2e;
}

/* ===== CONTENT LAYOUT ===== */
.content-area {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.main-content-inner {
    flex: 1;
    min-width: 0;
}

.content-with-sidebar {
    display: flex;
    gap: 30px;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ===== NEWS GRID ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== POST CARDS ===== */
.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.post-card .post-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.post-card.featured-card .post-thumb {
    height: 220px;
}

.post-card .cat-label {
    margin-bottom: 8px;
}

.post-body {
    padding: 15px;
}

.post-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.post-body h3 a {
    color: #1a1a2e;
}

.post-body h3 a:hover {
    color: var(--red-color, #d60000);
}

.post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.post-meta i {
    margin-left: 4px;
}

/* ===== HOME SECTION ===== */
.home-section {
    margin-bottom: 35px;
}

/* ===== FEATURED CARD in grid-2 ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.grid-2-inside {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ===== WIDGETS ===== */
.widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.widget-title,
.widget h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red-color, #d60000);
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget h3 i {
    color: var(--red-color, #d60000);
}

.widget ul {
    list-style: none;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.widget ul li a:hover {
    color: var(--red-color, #d60000);
    padding-right: 5px;
}

/* Most Read */
.most-read-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.most-read-item:last-child {
    border-bottom: none;
}

.most-read-num {
    background: var(--red-color, #d60000);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Oswald', sans-serif;
}

.most-read-item .post-title {
    flex: 1;
}

.most-read-item .post-title a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.most-read-item .post-title a:hover {
    color: var(--red-color, #d60000);
}

/* ===== CATEGORY PAGE ===== */
.category-header {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.category-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
}

.category-header h1 i {
    color: var(--red-color, #d60000);
    margin-left: 10px;
}

.cat-desc {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

/* ===== SINGLE POST ===== */
.single-post-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.single-post-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 10px 0;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
}

.single-post-meta i {
    margin-left: 5px;
}

.single-post-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: #1a1a2e;
    margin: 30px 0 15px;
}

.single-post-content img {
    border-radius: 6px;
    margin: 20px 0;
}

.single-post-content a {
    color: var(--red-color, #d60000);
    text-decoration: underline;
}

/* ===== SOCIAL SHARING ===== */
.share-buttons {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.share-buttons .share-label {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.share-facebook { background: #1877F2; }
.share-twitter { background: #1DA1F2; }
.share-whatsapp { background: #25D366; }
.share-telegram { background: #0088CC; }
.share-linkedin { background: #0A66C2; }

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 35px 0;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--red-color, #d60000);
    color: #fff;
}

.pagination .current {
    background: var(--red-color, #d60000);
    color: #fff;
}

/* ===== COMMENTS ===== */
.comments-area {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.comment-reply-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 15px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--red-color, #d60000);
    outline: none;
}

.comment-form .submit {
    background: var(--red-color, #d60000);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a2e;
    color: #ddd;
    margin-top: 50px;
    font-size: 14px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0 30px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red-color, #d60000);
}

.footer-widget p {
    line-height: 1.7;
    font-size: 14px;
}

.footer-widget ul li {
    padding: 6px 0;
}

.footer-widget ul li a {
    color: #bbb;
    transition: all 0.3s;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-right: 5px;
}

.footer-widget .social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

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

.footer-widget .social-links a:hover {
    background: var(--red-color, #d60000);
    transform: translateY(-3px);
}

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

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

.footer-bottom a:hover {
    color: #fff;
}

/* ===== LIVE RADIO BUTTON ===== */
.live-radio-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-color, #d60000);
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    animation: pulse 2s infinite;
}

.live-radio-btn i {
    font-size: 12px;
    animation: blink 1s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(214, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(214, 0, 0, 0); }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .featured-area {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-with-sidebar {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .nav-search input {
        width: 130px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-ads {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--red-color, #d60000);
        flex-direction: column;
        padding: 10px 0;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li > a {
        padding: 12px 20px;
    }
    
    .nav-menu ul.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0,0,0,0.1);
        border-top: none;
        display: none;
    }
    
    .nav-menu > li:hover > ul.sub-menu {
        display: block;
    }
    
    .nav-menu ul.sub-menu a {
        color: #fff;
        padding-right: 30px;
    }
    
    .nav-menu ul.sub-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .content-area {
        flex-direction: column;
    }
    
    .featured-main {
        min-height: 280px;
    }
    
    .featured-main .post-content h2 {
        font-size: 20px;
    }
    
    .single-post-header h1 {
        font-size: 24px;
    }
    
    .nav-search {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }
    
    .featured-side-item .post-thumb {
        width: 90px;
        height: 70px;
    }
    
    .post-card .post-thumb {
        height: 180px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}
