/* === Custom Font Face Example === */
@font-face {
    font-family: 'arabic-font';
    src: url('assets/site/fonts/tielabs-fonticon.woff2') format('woff2'),
        url('assets/site/fonts/tielabs-fonticon.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'arabic-font';
}

/* متغيرات الألوان الرئيسية */

:root {
    --main-title-color: #454E9D;
    /* لون العناوين */
    --section-title-color: #003366;
    /* لون عنوان القسم */
    --main-text-color: #333333;
    /* لون الخط */

    /* متغيرات أحجام الخط */
    --font-size-24: 24px;
    /* حجم الخط الكبير */
    --font-size-22: 22px;
    /* حجم الخط الكبير */
    --font-size-20: 20px;
    /* حجم الخط المتوسط */
    --font-size-18: 18px;
    /* حجم الخط الصغير */
    --font-size-12: 12px;
    --font-size-14: 14px;
    /* حجم الخط الصغير جداً */
    --font-size-16: 16px;
    --font-size-17: 17px;
    --font-size-30: 30px;
    /* حجم الخط الصغير جداً */

    --background-btn: #2a5298;
    --gray-color: #05A7FB;
    --red-color: #D32F2F;
    --yellow-color: #fdc500;
    --main-background: #f5f5f5;


    --main-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .08);
    /* للـ box-shadow */
    --main-border: 1px solid #f5f5f5;

}

/* Ø³ØªÙŠØ¨ Ù†ÙŠÙˆØ² - Ø§Ù„Ø£Ù†Ù…Ø§Ø· Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠØ© */

/* Ø§Ù„Ø£Ù†Ù…Ø§Ø· Ø§Ù„Ø¹Ø§Ù…Ø© */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Cairo', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    direction: rtl;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

a:hover {
    color: var(--section-title-color);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background-color: var(--background-btn);
    color: #fff;
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-size-18);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    /* background-color: var(--section-title-color); */
    color: #fff;
}

.section-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px 0;
}

/* Ø§Ù„Ù‡ÙŠØ¯Ø± */
header {
    background-color: white;
    -webkit-box-shadow: var(--main-box-shadow);
    box-shadow: var(--main-box-shadow);
    border: var(--main-border);
    /* position: sticky; */
    top: 0;
    z-index: 100;
}

.top-bar {
    background-color: var(--background-btn);
    color: white;
    padding: 10px 0;
}


/* 
.breaking-news {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 30px;
}

.breaking-label {
    background-color: var(--red-color);
    color: white;
    padding: 3px 10px;
    margin-left: 15px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
}

.breaking-news-content {
    white-space: nowrap;
    transition: opacity 0.5s ease;
    padding-right: 10px;
    font-size: 14px;
} */

.top-bar-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.currency-rates {
    position: relative;
    margin-right: 15px;
}

.currency-dropdown {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.currency-dropdown i {
    margin-right: 5px;
}

.currency-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border-radius: 4px;
    padding: 10px;
}

.currency-dropdown:hover .currency-dropdown-content {
    display: block;
}

.currency-country {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: #333;
    border-bottom: 1px solid #eee;
}

.currency-country:last-child {
    border-bottom: none;
}

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

.logo img {
    height: auto;
    width: 110px;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
}

.main-nav li {
    margin-bottom: 15px;
}

.main-nav a {
    font-weight: 700;
    font-size: 16px;
    padding: 5px 0;
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--background-btn);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: var(--background-btn);
    transition: all 0.3s ease;
    padding: 3px;
}

.social-icons a:hover {
    background-color: var(--background-btn);
    color: white;
}



.hot-files-bar {
    padding: 5px 0;
}

.hot-files {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0px;
}

.hot-file-label {
    display: flex;
    align-items: center;
    margin-left: 15px;
    font-weight: bold;
    color: var(--section-title-color);
}

.hot-file-label i {
    margin-left: 5px;
}

.hot-file {
    display: flex;
    align-items: center;
    margin-left: 15px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hot-file:hover {
    background-color: var(--background-btn);
    color: white;
}

.hot-file i {
    margin-left: 5px;
}



.country-stories {
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: flex-start;
    gap: 10px;
    scroll-snap-type: x mandatory;
}

.country-stories::-webkit-scrollbar {
    height: 4px;
}

.country-stories::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 2px;
}

.country-stories::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--section-title-color), #ff6600);
    border-radius: 2px;
}

.country-story {
    scroll-snap-align: start;
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 12px;
}

.country-flag {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 6px;
}

.country-story:hover .country-flag {
    border-color: var(--section-title-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.country-story.active .country-flag {
    border-color: var(--section-title-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.new-indicator {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--red-color), #ff6600);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.country-name {
    margin-top: 6px;
    font-size: 11px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
    line-height: 1.2;
}

.country-story:hover .country-name {
    color: var(--section-title-color);
}

.country-story.active .country-name {
    color: var(--section-title-color);
    font-weight: 700;
}

/* Ø§Ù„Ù…Ø­ØªÙˆÙ‰ Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠ */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 0;
}

.content-column {
    flex: 1;
}

.sidebar {
    width: 100%;
}

/* Ø§Ù„Ù‚Ø³Ù… Ø§Ù„Ù…Ù…ÙŠØ² */
.featured-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-article {
    position: relative;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: var(--main-box-shadow);
    box-shadow: var(--main-box-shadow);
    border: var(--main-border);
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--red-color);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.article-content {
    padding: 15px;
    position: relative;
}

.article-content h2 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.article-content p {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 12px;
}

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

.side-article {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: var(--main-box-shadow);
    box-shadow: var(--main-box-shadow);
    border: var(--main-border);
}

.side-article .article-content {
    padding: 10px;
}

.side-article h3 {
    font-size: var(--font-size-16);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 25px;
}

/* Ø§Ù„Ø£Ù‚Ø³Ø§Ù… Ø§Ù„Ø®Ø§ØµØ© */
.special-section {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    /*     -webkit-box-shadow: var(--main-box-shadow);
    box-shadow: var(--main-box-shadow);
    border: var(--main-border); */
    margin-bottom: 20px;
    -webkit-box-shadow: var(--main-box-shadow);
    box-shadow: var(--main-box-shadow);
    border: var(--main-border);
}

.propaganda-section-margin {
    margin-top: 20px;
    margin-right: 0px;
    margin-left: 0px;
    padding: 0px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.section-header h2 {
    font-size: var(--font-size-18);
    color: var(--section-title-color);
    font-weight: 700;
}

.section-badge {
    background-color: var(--section-title-color);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.view-all {
    font-size: 14px;
    color: #666;
}

.special-content {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.special-image {
    margin-bottom: 15px;
}

.special-text h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.special-text p {
    margin-bottom: 15px;
    color: #666;
}

/* Ù…Ø¤Ø´Ø± Ø§Ù„Ø¯Ø¹Ø§ÙŠØ© */
.propaganda-items {
    padding: 15px;
}

.propaganda-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.source {
    font-weight: bold;
    color: var(--background-btn);
    margin-bottom: 5px;
}

.propaganda-item h3 {
    margin-bottom: 10px;
    font-size: var(--font-size-18);
    color: #333;
    font-weight: bold;
}

.analysis {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

.analysis h4 {
    margin-bottom: 5px;
    color: var(--section-title-color);
    font-size: 16px;
}

.analysis p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.propaganda-meter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meter-label {
    font-size: 12px;
    font-weight: bold;
}

.meter {
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background-color: var(--red-color);
    border-radius: 4px;
}

.meter-value {
    font-size: 12px;
    font-weight: bold;
}

/* Ø£ÙŠÙ† Ø§Ø®ØªÙÙ‰ØŸ */
.disappeared-persons {
    padding: 15px;
}

.person-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.person-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.person-image {
    width: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #e0e0e0;
}

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

.person-info {
    text-align: center;
}

.person-info h3 {
    margin-bottom: 5px;
    font-size: var(--font-size-18);
    color: #333;
    font-weight: bold;
}

.person-title {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 14px;
}

.person-info p {
    font-size: 14px;
    color: #666;
}

/* Ø¹Ø¯Ø³Ø© Ø§Ù„Ø¬Ù…Ù‡ÙˆØ± */
.audience-photos {
    padding: 15px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;

}

.photo-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 12px;
}

.location {
    font-weight: bold;
}

.photographer {
    font-size: 10px;
    opacity: 0.8;
}

/* ØªØºØ·ÙŠØ© Ø¨Ø§Ù„ÙÙŠØ¯ÙŠÙˆ */
.video-grid {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-grid-syrian {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-item {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    background-color: var(--section-title-color);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 12px;
}

.video-content {
    padding: 10px;
}

.video-content h3 {
    font-size: var(--font-size-16);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 25px;
}

.video-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 12px;
}

.video-item.featured .video-content {
    padding: 15px;
}

.video-item.featured h3 {
    font-size: var(--font-size-18);
    color: #333;
    font-weight: bold;
}

/* Ø£Ù‚Ø³Ø§Ù… ØªÙØ§Ø¹Ù„ÙŠØ© */
.interactive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
}

.interactive-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.interactive-card:hover {
    background-color: var(--background-btn);
    color: white;
}

.interactive-card:hover a {
    color: white;
}

.card-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--section-title-color);
}

.interactive-card:hover .card-icon {
    color: white;
}

.interactive-card h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.interactive-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.interactive-card:hover p {
    color: #ccc;
}

.interactive-card .btn {
    background-color: var(--section-title-color);
}

.interactive-card:hover .btn {
    background-color: white;
    color: var(--background-btn);
}

/* Ø§Ù„Ø´Ø±ÙŠØ· Ø§Ù„Ø¬Ø§Ù†Ø¨ÙŠ */
.sidebar-section {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: var(--main-box-shadow);
    box-shadow: var(--main-box-shadow);
    border: var(--main-border);
    margin-bottom: 20px;
}

.sidebar-section h3 {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: var(--font-size-18);
    color: var(--section-title-color);
    font-weight: 700;
}

.most-read-articles {
    padding: 15px;
}

.most-read-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

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

.number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: var(--background-btn);
    color: white;
    border-radius: 50%;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.most-read-item a {
    font-size: var(--font-size-16);
    line-height: 1.4;
}

.notebook-section {
    padding: 15px;
    text-align: center;
}

.notebook-section p {
    margin-bottom: 10px;
    font-size: var(--font-size-16);
    color: #333;
    font-weight: 600;
}

.poll {
    padding: 15px;
}

.poll p {
    margin-bottom: 15px;
    font-size: 14px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poll-option {
    background-color: #f0f0f0;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.poll-option:hover {
    background-color: var(--background-btn);
    color: white;
}

.hot-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
}

.hot-topic {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hot-topic:hover {
    background-color: var(--background-btn);
    color: white;
}

.flag-icon {
    margin-left: 5px;
}

.weather {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.weather-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.city {
    font-weight: bold;
}

.temp {
    color: #666;
}

.telegram-banner {
    padding: 15px;
    text-align: center;
    background-color: #0088cc;
    color: white;
}

.telegram-banner h3 {
    color: white;
    border-bottom: none;
    padding: 0;
    margin-bottom: 10px;
}

.telegram-banner p {
    margin-bottom: 15px;
    font-size: 14px;
}

.telegram-banner .btn {
    background-color: white;
    color: #0088cc;
}

.telegram-banner .btn:hover {
    background-color: #f0f0f0;
}

/* Ø§Ù„ÙÙˆØªØ± */
footer {
    /* background-color: var(--background-btn); */
    background-color: #071c35;
    color: white;
    padding: 30px 0;
    margin-top: 30px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    font-size: var(--font-size-18);
    color: #ffcc33;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: #ccc;
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #ccc;
}

.newsletter-form {
    /* display: flex; */
}

.newsletter-form input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: var(--section-title-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.copyright {
    margin-top: 30px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #ccc;
}

/* Ù…ÙÙƒØ±Ø© Ø³ØªÙŠØ¨ Ø§Ù„Ù…Ù†Ø¨Ø«Ù‚Ø© */
.notebook-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.notebook-popup.active {
    display: flex;
}

.notebook-popup-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.notebook-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.notebook-popup-header h3 {
    margin: 0;
    color: var(--background-btn);
}

.close-notebook {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.notebook-popup-body {
    padding: 15px;
    overflow-y: auto;
}

.empty-notebook {
    text-align: center;
    padding: 30px 0;
    color: #999;
}

.empty-notebook i {
    font-size: 40px;
    margin-bottom: 10px;
}

.notebook-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notebook-article {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.notebook-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notebook-article-image {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-left: 10px;
}

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

.notebook-article-content h4 {
    margin-bottom: 5px;
    font-size: 14px;
}

.notebook-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.notebook-article-date {
    font-style: italic;
}

.remove-from-notebook {
    background: none;
    border: none;
    color: var(--red-color);
    cursor: pointer;
    font-size: 12px;
}

.floating-notebook-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--background-btn);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 99;
}

.notebook-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--section-title-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    /* إخفاء افتراضي */
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    min-height: 20px;
}

.notebook-count:not(:empty) {
    display: flex;
    /* إظهار فقط عندما يكون هناك محتوى */
}

.notebook-count:empty,
.notebook-count[style*="display: none"] {
    display: none !important;
}

/* Ø§Ù„Ø§Ø³ØªØ¬Ø§Ø¨Ø© Ù„Ù„Ø´Ø§Ø´Ø§Øª Ø§Ù„Ù…ØªÙˆØ³Ø·Ø© */
@media (min-width: 768px) {
    .main-content {
        flex-direction: row;
    }

    .content-column {
        flex: 2;
        /* margin-left: 20px; */
    }

    .sidebar {
        flex: 1;
        width: auto;
    }

    .featured-section {
        flex-direction: row;
    }

    .main-article {
        flex: 2;
        /* margin-left: 20px; */
    }

    .side-articles {
        flex: 1;
    }

    .special-content {
        flex-direction: row;
    }

    .special-image {
        flex: 1;
        margin-left: 15px;
        margin-bottom: 0;
    }

    .special-text {
        flex: 2;
    }

    .person-card {
        flex-direction: row;
        text-align: right;
    }

    .person-image {
        margin: 0 0 0 15px;
    }

    .person-info {
        text-align: right;
    }

    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .video-grid {
        display: grid;
        /* grid-template-columns: 2fr 1fr 1fr; */
        grid-template-columns: 2fr 2fr;
        /* grid-template-columns: repeat(3, 1fr); */
        grid-template-rows: auto;
    }

    .video-grid-syrian {
        display: grid;
        /* grid-template-columns: 2fr 1fr 1fr; */
        grid-template-columns: 1fr 1fr 1fr;
        /* grid-template-columns: repeat(3, 1fr); */
        grid-template-rows: auto;
    }

    .video-item.featured {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .interactive-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Ø§Ù„Ø§Ø³ØªØ¬Ø§Ø¨Ø© Ù„Ù„Ø´Ø§Ø´Ø§Øª Ø§Ù„ÙƒØ¨ÙŠØ±Ø© */
@media (min-width: 992px) {
    .main-nav ul {
        flex-direction: row;
    }

    .main-nav li {
        margin-bottom: 0;
    }
}



/* News Ticker Styles */
.news-ticker-container {
    background-color: var(--red-color);
    color: white;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.news-ticker-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.news-ticker {
    height: 40px;
    overflow: hidden;
    position: relative;
}

.news-ticker-content {
    position: relative;
    transition: transform 0.5s ease;
}

.news-ticker-content a {
    color: white;
    text-decoration: none;
    display: block;
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .news-ticker-content a:hover {
    text-decoration: underline;
} */

.urgent-label {
    background-color: #952f20;
    color: #fff;
    padding: 0px 8px;
    font-weight: bold;
    font-size: 0.9em;
}



/* تعديلات إضافية للقائمة الرئيسية والشريط العاجل */
.main-header {
    display: flex;
    /* justify-content: space-between; */
    /* justify-content: flex-start; */
    align-items: center;
    padding: 15px 0;
}

.logo {}

.logo-header {
    margin-inline-end: 50px;
}

.main-nav {
    /*flex: 2;*/
    display: flex;
    justify-content: center;
}

.menu-toggle {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.top-bar {
    display: flex;
    padding: 0;
    background-color: #f8f8f8;
}

.breaking-news-container {
    flex: 1;
    background-color: var(--red-color);
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.breaking-label {
    background-color: transparent;
    color: white;
    padding: 5px 10px 5px 0;
    font-weight: bold;
    margin-left: 10px;
    z-index: 2;
}

.breaking-news {
    position: relative;
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
    flex: 1;
}

.breaking-news-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.breaking-news-item {
    display: none;
    color: white;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.top-bar-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0px;
}

.social-icons {
    margin-left: 30px;
}

.country-stories {
    display: flex;
    overflow-x: auto;
    padding: 0px 0;
    justify-content: center;
    gap: 20px;
}

.sidebar-special-sections {
    margin-bottom: 20px;
}

.sidebar-special-section {
    margin-bottom: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
}

.sidebar-special-section h3 {
    margin-top: 0;
    border-bottom: 2px solid var(--section-title-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: var(--section-title-color);
    font-size: var(--font-size-18);
    font-weight: 700;
}

.sidebar-article {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.sidebar-article:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-article-image {
    width: 230px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-left: 10px;
}

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

.sidebar-article-content h4 {
    margin: 0 0 5px 0;
    font-size: var(--font-size-17);
    font-weight: 700;
    line-height: 25px;
    color: #333;
}

.sidebar-article-meta {
    font-size: 12px;
    color: #666;
}

@media (max-width: 767px) {
    .main-header {
        flex-direction: row;
        padding: 10px 0;
    }

    .logo {
        flex: 1;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        padding: 20px;
        overflow-y: auto;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .menu-toggle {
        flex: 0;
        display: block;
    }

    .top-bar {
        flex-direction: column;
    }

    .breaking-news-container {
        width: 100%;
    }

    .top-bar-right {
        width: 100%;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .social-icons {
        margin-right: 0;
    }

    .country-stories {
        justify-content: flex-start;
        padding: 10px 0;
    }
}

/* أنماط ستوري البلدان */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
}

.story-modal.active {
    display: block;
}

.story-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-body {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.story-items {
    width: 100%;
    height: 100%;
}

.story-item {
    width: 100%;
    height: 100%;
}

.story-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* .story-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
} */

/* .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
} */
/* 
.story-image h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    font-size: 18px;
    line-height: 1.4;
    text-align: right;
} */

/* .story-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.story-progress {
    display: flex;
    gap: 5px;
    flex: 1;
    margin-right: 20px;
}

.progress-item {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.progress-item.active {
    background: white;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.story-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.prev-btn,
.next-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.audience-subheader {
    padding: 15px;
    font-size: var(--font-size-14);
}

.report-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: var(--main-box-shadow);
    box-shadow: var(--main-box-shadow);
    border: var(--main-border);
    margin-bottom: 15px;
}

.report-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.report-item a:hover {
    text-decoration: none;
    color: inherit;
}

.report-image {
    position: relative;
    width: 100%;
}

.report-image img {
    width: 100%;
    height: auto;
    display: block;
}

.report-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--section-title-color);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.report-content {
    padding: 15px;
}

.report-content h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
}

.report-meta {
    color: #666;
    font-size: 14px;
}

.categories-link {
    align-items: center;
    margin-left: 15px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 700;
}

.categories-link:hover {
    background-color: var(--background-btn);
    color: white;
}

.article-categories {
    margin-bottom: 20px;
    margin-top: 20px;
}

.article-content p {

    color: #333;
    margin-bottom: 10px;
    font-size: 18px;

}

.update-reading-list {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 0;
    margin-right: 20px;
    border-right: 1px solid #333;
    border-left: none;
    padding-right: 20px;
}

.update-reading-list button {
    margin-left: 10px;
}

.slider-section {
    padding: 0px;
    border-left: 1px solid #f0f0f0;
}

.slider-section:after {
    padding: 0px;
    border-left: 1px solid #f0f0f0;
}

.accident-content {
    padding-left: 20px;
}

/* ستايل المقالات السفلية - تصميم رواق */
.calm-articles-section {
    margin-top: 20px;
}

.calm-articles-header {
    display: flex;
    justify-content: flex-start;
    /* Title to the right for RTL */
    align-items: center;
    margin-bottom: 25px;
}

.calm-articles-header h3 {
    font-size: var(--font-size-22, 22px);
    color: var(--main-title-color, var(--background-btn));
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-right: 15px;
    /* space for the line */
}

.calm-articles-header h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 90%;
    background-color: var(--section-title-color, var(--section-title-color));
    border-radius: 2px;
}

.calm-article-item {
    display: flex;
    flex-direction: row;
    /* Side by side */
    align-items: center;
    height: 100%;
    text-decoration: none;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
}

.calm-article-image {
    flex-shrink: 0;
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
}

html[dir="rtl"] .calm-article-image {
    margin-left: 15px;
}

html:not([dir="rtl"]) .calm-article-image {
    margin-right: 15px;
}

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

.calm-article-content h4 {
    font-size: var(--font-size-16, 16px);
    font-weight: 700;
    color: var(--main-text-color, #333);
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: right;
}

@media (max-width: 992px) {
    .calm-article-item {
        flex-direction: column;
        text-align: right;
    }

    .calm-article-image {
        width: 100%;
        height: 120px;
        margin: 0 0 12px 0;
    }

    html[dir="rtl"] .calm-article-image {
        margin-left: 0;
    }

    .calm-article-content h4 {
        -webkit-line-clamp: 2;
    }
}

/* Opinion Card Link Styles */
.opinion-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    height: 100%;
}

.opinion-card-link .opinion-item {
    transition: all 0.3s ease-in-out;
    height: 100%;
}



.opinion-card-link:hover .opinion-title {
    color: var(--section-title-color, var(--section-title-color));
}


.main-article-date-box {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--background-btn);
    color: #fff;
    padding: 5px 10px 5px 15px;
    border-radius: 8px;
    font-size: var(--font-size-14);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    z-index: 2;
    direction: rtl;
}

.main-article-date-box i {
    color: #fff;
    font-size: var(--font-size-14);
    margin-right: 7px;
    margin-left: 0;
}

.my-box {
    -webkit-box-shadow: var(--main-box-shadow);
    box-shadow: var(--main-box-shadow);
    border: var(--main-border);
}

.article-title {
    color: var(--main-title-color);
}

.article-published-date {
    display: inline-flex;
    align-items: center;
    color: var(--main-title-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0 15px 0;
    gap: 7px;
    direction: rtl;
    /* حتى يظهر اليوم قبل الشهر بشكل صحيح */
}


.read-more-box {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 20px 18px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.read-more-title {
    font-size: 22px;
    font-weight: bold;
    text-align: right;
    margin-bottom: 18px;
    color: var(--section-title-color);
}

.read-more-featured {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-color);
}

.read-more-featured-text {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    flex: 1;
}

.read-more-featured-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.read-more-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.read-more-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 10px;
    font-size: 15px;
}

.read-more-list li .dot {
    width: 7px;
    height: 7px;
    background: var(--red-color);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.read-more-list li a {
    color: var(--main-title-color);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 600;
}

.read-more-list li a:hover {
    color: #ff6600;
}

.read-more-featured-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.read-more-featured-link:hover .read-more-featured-text {
    color: #ff6600;
}


.article-tags {
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-label {
    font-weight: bold;
    color: #22313a;
    margin-left: 10px;
    font-size: 16px;
}

.tag-link {
    display: inline-block;
    background: #f0f0f0;
    color: #22313a;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.tag-link:hover {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.10);
}



.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 32px;
    margin: 40px 0 30px 0;
    padding: 32px 0 0 0;
    border-top: 1.5px solid #e0e0e0;
    background: none;
}

.nav-article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: #22313a;
    padding: 18px 22px 18px 22px;
    min-width: 0;
    max-width: 48%;
    border: none;
    position: relative;
}



.nav-label {
    font-size: 13px;
    color: var(--red-color);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-content img {
    width: 90px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 1.5px solid #e0e0e0;
    background: #f7f7f7;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    transition: box-shadow 0.2s;
}

.nav-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-text-color);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 285px;
    transition: color 0.2s;
    letter-spacing: 0.1px;
}

.nav-article:hover .nav-title {
    color: #ff6600;
}

@media (max-width: 900px) {
    .article-navigation {
        flex-direction: column;
        gap: 18px;
    }

    .nav-article {
        max-width: 100%;
    }

    .nav-content img {
        width: 70px;
        height: 48px;
    }

    .nav-title {
        max-width: 150px;
        font-size: 14px;
    }
}


.related-articles {
    margin: 40px 0 0 0;
}

.related-articles .section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-title-color, #003366);
    margin-bottom: 30px;
    padding-right: 10px;
    position: relative;
}


.related-article-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 30px;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
}


.related-article-card .article-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.related-article-card .article-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.2s;
    display: block;
}


.related-article-card .category-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #e74c3c;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.related-article-card .article-content {
    padding: 22px 18px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.related-article-card .article-title {
    font-size: 19px;
    font-weight: 700;
    color: #22313a;
    margin-bottom: 18px;
    line-height: 1.6;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-card .article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.related-article-card:hover .article-title a {
    color: #ff6600;
}

.related-article-card .article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 15px;
    margin-top: auto;
}

.related-article-card .article-meta .author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 7px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
}

.related-article-card .article-meta .author-name {
    font-weight: 700;
    color: #22313a;
    margin-left: 5px;
    font-size: 15px;
}

.related-article-card .article-meta .date {
    color: #888;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 900px) {
    .related-article-card .article-image img {
        height: 150px;
    }

    .related-article-card .article-title {
        font-size: 16px;
        min-height: 36px;
    }
}




.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.audience-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.audience-item:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.audience-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.audience-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 226px;
    overflow: hidden;
}

.audience-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.audience-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.audience-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 10px 10px 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.audience-card-title {
    color: #fff;
    font-size: var(--font-size-18);
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    line-height: 1.4;
}

.audience-card-date {
    color: #fff;
    font-size: 0.95rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.audience-card-date i {
    font-size: 1em;
    opacity: 0.8;
}


.category-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px 18px;
    margin: 30px 0;
}

.category-article-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f3f3;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-article-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
    border-color: var(--background-btn, var(--main-title-color));
}

.category-article-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #eee;
}

.category-article-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-article-content {
    padding: 18px 16px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-badge {
    display: inline-block;
    background: var(--background-btn, var(--main-title-color));
    color: #fff;
    font-size: 13px;
    border-radius: 6px;
    padding: 2px 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-article-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #071c35;
    margin-bottom: 16px;
    line-height: 1.6;
    min-height: 48px;
}

.category-article-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    color: #444;
    margin-top: auto;
}

.category-article-meta i {
    margin-left: 4px;
    color: #888;
    font-size: 13px;
}

.article-breadcrumb {
    width: 100%;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    padding: 18px 0 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    z-index: 2;
    margin-bottom: 18px;
}

.article-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    background: none;
    justify-content: center;
    max-width: 1200px;
    /* أو نفس عرض الكونتينر الرئيسي */
}

.article-breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--main-title-color);
    font-weight: 500;
}

.article-breadcrumb li:not(:last-child)::after {
    content: '›';
    color: #b0b8c1;
    margin: 0 8px;
    font-size: 1.1em;
    font-weight: bold;
}

.article-breadcrumb a {
    color: var(--main-title-color);
    text-decoration: none;
    transition: color 0.15s;
    padding: 2px 6px;
    border-radius: 4px;
}

.article-breadcrumb a:hover {
    background: #f0f0f0;
    color: #22313a;
}

.article-breadcrumb .active {
    color: #888;
    font-weight: 600;
    padding: 2px 6px;
}

.article-breadcrumb i.fas.fa-home {
    margin-left: 4px;
    color: var(--main-title-color);
}

.opinion-page-row {
    margin-bottom: 40px;
}

.opinion-article-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.opinion-title {
    font-size: 2rem;
    font-weight: bold;
    color: #071c35;
    margin-bottom: 0;
    line-height: 1.4;
}

.opinion-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.opinion-meta i {
    margin-left: 4px;
    color: #b0b8c1;
}

.opinion-content {
    font-size: 1.15rem;
    color: #222;
    line-height: 1.9;
    margin-bottom: 36px;
}

.opinion-writer-sidebar {
    background: #071c35;
    padding-top: 30px;
    padding-bottom: 30px;
}

.writer-avatar-box {
    position: relative;
}

.writer-avatar-outer {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f0fa 60%, #fff 100%);
    box-shadow: 0 4px 18px rgba(0, 86, 179, 0.10);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.writer-avatar-outer img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.writer-name {
    font-weight: bold;
    font-size: 1.13rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.writer-bio {
    font-size: var(--font-size-14);
    color: #fff;
    line-height: 1.6;
    min-height: 36px;
    max-width: 95%;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-opinions-sidebar {
    background: #071c35;
}

.sidebar-section-title {
    font-size: 1.08rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
    text-align: right;
    margin-right: 10px;
}

.related-opinions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: 10px;
}

.related-opinions-list li {
    margin-bottom: 12px;
}

.related-opinions-list li:last-child {
    margin-bottom: 0;
}

.related-opinions-list a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #071c35;
    background: var(--main-title-color);
    border-radius: 6px;
    padding: 10px 8px;
    margin: 10px;

}

.related-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #fff;
}

.related-date {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.all-opinions-btn {
    background-color: var(--section-title-color);
}


/* Article page specific styles */
.article-page {
    margin-bottom: 40px;
}

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

.article-category {
    margin-bottom: 10px;
}

.article-category a {
    background-color: #0056b3;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.article-meta>div {
    margin-left: 20px;
}

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

.article-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.social-share {
    display: flex;
    align-items: center;
}

.social-share span {
    margin-left: 10px;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 5px;
    color: #fff;
}

.social-share a.facebook {
    background-color: #3b5998;
}

.social-share a.twitter {
    background-color: #1da1f2;
}

.social-share a.whatsapp {
    background-color: #25d366;
}

.social-share a.telegram {
    background-color: #0088cc;
}

.save-to-notebook,
.print-article {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.save-to-notebook i,
.print-article i {
    transition: all 0.3s ease;
}

.save-to-notebook:hover,
.print-article:hover {
    background: #f8f9fa;
    color: #007bff;
}

/* حالة الزر المحفوظ */
.save-to-notebook.saved {
    color: #28a745;
}

.save-to-notebook.saved i {
    color: #28a745;
}

.save-to-notebook.saved:hover {
    background: #d4edda;
    color: #155724;
}

.article-featured-image {
    margin-bottom: 20px;
    position: relative;
}

.article-featured-image img {
    width: 100%;
    border-radius: 5px;
}

.image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

.article-content {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.article-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0px 0 10px;
}

.article-content p {
    margin-bottom: 30px;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.5;
        word-wrap: break-word;
}

.article-content ul {
    margin-bottom: 20px;
    padding-right: 20px;
}

.article-content ul li {
    margin-bottom: 10px;
}

.analysis-box {
    background-color: #f9f9f9;
    border-right: 4px solid #0056b3;
    padding: 15px;
    margin: 20px 0;
}

.analysis-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0056b3;
}

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

.tags-label {
    font-weight: 600;
    margin-left: 10px;
}

.tag {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    text-decoration: none;
}

.article-author-box {
    display: flex;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 20px;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 5px;
    color: #fff;
}

.author-social a.twitter {
    background-color: #1da1f2;
}

.author-social a.facebook {
    background-color: #3b5998;
}

.author-social a.linkedin {
    background-color: #0077b5;
}

.related-articles {
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.related-article-card {
    margin-bottom: 20px;
}

.related-article-card .article-image {
    position: relative;
    margin-bottom: 10px;
}

.related-article-card .main-article-date-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.related-article-card .article-image img {
    width: 100%;
    border-radius: 5px;
    display: block;
}

.related-article-card .article-title {
    font-size: var(--font-size-20);
    font-weight: 700;
    margin-bottom: 5px;
}

.related-article-card .article-meta {
    font-size: 12px;
}

.article-comments {
    margin-bottom: 30px;
}

.comments-count {
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.comment {
    display: flex;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.comment-date {
    font-size: 12px;
    color: #666;
}

.comment-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.comment-actions {
    display: flex;
    align-items: center;
}

.reply-btn,
.like-btn {
    background: none;
    border: none;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    margin-left: 15px;
}

.reply-btn i,
.like-btn i {
    margin-left: 5px;
}

.like-btn.liked {
    color: #0056b3;
}

.comment-replies {
    margin-top: 15px;
    margin-right: 20px;
    border-right: 2px solid #eee;
    padding-right: 15px;
}

.comment-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.comment-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

textarea.form-control {
    resize: vertical;
}

.btn-primary {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 24px;
    }

    .article-meta {
        flex-wrap: wrap;
    }

    .article-meta>div {
        margin-bottom: 5px;
    }

    .article-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-share {
        margin-bottom: 10px;
    }

    .article-content {
        font-size: 16px;
    }

    .article-author-box {
        flex-direction: column;
    }

    .author-image {
        margin: 0 auto 15px;
    }

    .author-info {
        text-align: center;
    }
}

.title-stories {
    align-items: center;
    color: var(--main-title-color);
    direction: ltr;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1rem;
    margin: 0 auto;
    margin-block-end: auto;
    max-inline-size: 100%;
    padding-block-end: 1rem;
    word-wrap: break-word;
}

.title-stories span {
    color: var(--red-color);
    margin-left: 5px;
}

.title-article {
    color: var(--main-title-color);

    font-size: 1.75rem;
    font-weight: 700;
    inline-size: 100%;
    line-height: 2.375rem;
    margin: 0;
    max-inline-size: 100%;
    text-align: center;
    word-wrap: break-word;

    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    margin-block-end: auto;
    padding-block-end: 4rem;
}

.writer-name {
    color: var(--main-title-color);
}

.writer-bio {
    color: var(--main-title-color);
}


.notebook-page {
    padding: 40px 0;
}

.notebook-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    color: var(--main-title-color);
    font-size: var(--font-size-24);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-title i {
    color: var(--main-title-color);
    margin-left: 10px;
}

.page-description {
    color: #666;
    font-size: 1.1rem;
}

.notebook-article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}


.article-image {
    position: relative;
    overflow: hidden;
}

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

.remove-from-notebook {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.remove-from-notebook:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.poll p {
    font-size: var(--font-size-18);
    color: #333;
    font-weight: 500;
}

.poll-options a {
    font-size: var(--font-size-18);
    color: #333;
    font-weight: 500;
}

.article-content {
    padding: 20px;
    padding-right: 0px;
    padding-left: 0px;
}

.article-title {
    font-size: var(--font-size-30);
    margin-bottom: 10px;
}

.article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-title a:hover {
    color: #007bff;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
}

.article-date i {
    margin-left: 5px;
}

.empty-notebook {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-notebook h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-notebook p {
    color: #999;
    margin-bottom: 30px;
}

.btn-primary {
    background: #007bff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.category-article-img-wrapper {
    position: relative;
}

/* Opinions Section Styles */
.opinions-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.section-title {
    color: var(--main-title-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    font-size: var(--font-size-22);
    font-weight: 700;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
} */

.opinions-section .category-article-card {
    border-left: 4px solid #28a745;
}

.opinions-section .category-badge {
    background: #28a745;
    color: white;
}

/* ==== Investigation Details Page ==== */
.investigation-details {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 30px 20px;
    margin: 30px auto;

}

.investigation-details h1 {
    color: var(--section-title-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.investigation-details .meta-desc {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.investigation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    margin-bottom: 18px;
    font-size: 1rem;
}

.investigation-progress {
    margin-bottom: 18px;
}

.investigation-progress .progress-value {
    color: var(--background-btn);
    font-weight: 700;
    margin-right: 8px;
}

.investigation-progress .progress-bar {
    background: #f0f0f0;
    border-radius: 6px;
    height: 12px;
    width: 100%;
    margin-top: 6px;
    overflow: hidden;
}

.investigation-progress .progress-fill {
    background: linear-gradient(90deg, var(--background-btn), var(--section-title-color));
    height: 100%;
    transition: width 0.5s;
}

.investigation-counts {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    font-size: 1rem;
}

.investigation-counts span {
    background: var(--background-btn);
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 700;
}

.investigation-photo {
    margin-bottom: 18px;
    text-align: center;
}

.investigation-photo img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
}

.investigation-photo .photo-desc {
    color: #888;
    font-size: 0.95rem;
}

.investigation-content {
    margin-bottom: 24px;
    line-height: 2;
    font-size: 1.15rem;
    color: #222;
}

.investigation-children {
    margin-top: 30px;
}

.investigation-children h3 {
    color: var(--main-title-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.investigation-children ul {
    padding-right: 18px;
}

.investigation-children li {
    margin-bottom: 7px;
    font-size: 1rem;
    color: var(--main-title-color);
    font-weight: 600;
}

/* ==== Investigation Card (Partial) ==== */
.investigation-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.investigation-card a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.investigation-card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investigation-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.investigation-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    z-index: 2;
}

.investigation-content {
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.investigation-title {
    color: var(--main-title-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.investigation-description {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.investigation-progress {
    margin-bottom: 10px;
}

.investigation-progress .progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.98rem;
    color: var(--main-title-color);
    font-weight: 700;
}

.investigation-progress .progress-bar {
    background: #f0f0f0;
    border-radius: 6px;
    height: 10px;
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
}

.investigation-progress .progress-fill {
    background: linear-gradient(90deg, var(--background-btn), var(--section-title-color));
    height: 100%;
    transition: width 0.5s;
}

.investigation-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}


.stat-item {
    background: #f0f0f0;
    border-radius: 6px;
    padding: 7px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
}

.investigation-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.action-btn {
    background: var(--section-title-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 18px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.action-btn.share-btn {
    background: var(--background-btn);
}

.action-btn:hover {
    opacity: 0.9;
}

@media (max-width: 700px) {
    .investigation-card {
        max-width: 100%;
    }

    .investigation-card-img-wrap {
        height: 150px;
    }

    .investigation-content {
        padding: 14px 8px 12px 8px;
    }
}







/* إخفاء زر القائمة على الشاشات الكبيرة */
.mobile-only {
    display: none;
    top: 15px;
    right: 15px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
}

/* القائمة الجانبية الأساسية */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    /* ابدأ من خارج الشاشة */
    width: 300px;
    height: 100%;
    background-color: #fff;

    transition: left 0.3s ease-in-out;
    z-index: 1002;
    padding: 25px;
    overflow-y: auto;
    /* للسماح بالتمرير إذا كانت القائمة طويلة */
}

/* حالة القائمة عند الفتح */
.side-menu.open {
    left: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}


#close-menu-button {
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #333;
    padding-left: 15px;
}

.search-bar {
    display: flex;
    margin-bottom: 0px;
    justify-content: flex-end;
}

.search-bar input {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 0px 5px 5px 0px;
    padding: 5px;
}

.search-bar button {
    border: 1px solid #e5e5e5;
    border-right: none;
    background-color: #f8f8f8;
    padding: 0 12px;
    border-radius: 5px 0px 0px 5px;
    color: #D32F2F;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li a {
    display: block;
    padding: 12px 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    border-bottom: 1px solid #f2f2f2;
    transition: background-color 0.2s;
}

/* 
.side-menu ul li a:hover {
    background-color: #f5f5f5;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.social-icons .social-icon svg {
    width: 24px;
    height: 24px;
    fill: #555;
} */

/* الخلفية المعتمة */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#overlay.active {
    display: block;
}


/* إظهار الزر وإخفاء القائمة الأفقية العادية على الجوال */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
        padding: 15px;
    }

    /* إذا كان لديك قائمة أفقية للشاشات الكبيرة، يمكنك إخفاؤها هنا */
    /* .desktop-menu { display: none; } */
}







/* --- Professional Dropdown Menu Styles --- */

/* 1. تهيئة العنصر الأب للقائمة المنسدلة
   - position: relative; هو أهم جزء هنا، لجعل القائمة الفرعية تتمركز نسبةً له. */
.nav .custom-dropdown {
    position: relative;
}

/* 2. إخفاء وتصميم القائمة المنسدلة الافتراضية
   - يتم إخفاؤها باستخدام visibility و opacity للسماح بالتحريك السلس.
   - position: absolute; يجعلها تطفو فوق المحتوى الآخر.
   - box-shadow يضيف عمقًا واحترافية. */
.custom-dropdown .custom-dropdown-menu {
    display: block;
    /* نستخدم display block ونخفيها بـ visibility للتحريك */
    position: absolute;
    top: 100%;
    /* تظهر مباشرة تحت العنصر الأب */
    right: 0;
    z-index: 1000;
    /* لضمان ظهورها فوق العناصر الأخرى */

    min-width: 220px;
    /* تحديد عرض مناسب للقائمة */
    padding: 10px 0;
    /* مساحة داخلية عمودية */
    margin: 0;
    /* إزالة أي هوامش افتراضية */

    background-color: #ffffff;
    /* لون الخلفية */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* إطار ناعم */
    border-radius: 8px;
    /* حواف دائرية احترافية */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* ظل احترافي */

    /* الخصائص الأساسية للتحريك */
    visibility: hidden;
    /* إخفاء القائمة */
    opacity: 0;
    transform: translateY(10px);
    /* تبدأ من الأسفل قليلاً لإعطاء تأثير الحركة */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* 3. إظهار القائمة المنسدلة عند تمرير الفأرة (Hover)
   - عند تمرير الفأرة فوق .custom-dropdown، يتم تطبيق هذه الخصائص على .custom-dropdown-menu */
.custom-dropdown:hover>.custom-dropdown-menu {
    visibility: visible;
    /* إظهار القائمة */
    opacity: 1;
    transform: translateY(0);
    /* تعود لمكانها الأصلي */
}

/* 4. تصميم عناصر القائمة المنسدلة (الروابط)
   - نجعل الرابط يملأ المساحة المتاحة لسهولة النقر. */
.custom-dropdown-menu li {
    list-style: none;
    /* إزالة النقاط من القائمة */
}

.custom-dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-weight: normal;
    color: #333;
    /* لون الخط */
    background-color: transparent;
    border: 0;
    text-align: right;
    /* محاذاة النص لليمين للغة العربية */
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* 5. تغيير لون العنصر عند تمرير الفأرة عليه */
.custom-dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5;
    /* لون خلفية عند التمرير */
    color: #000;
    /* تغيير لون الخط */
}

/* 6. (اختياري) إضافة سهم صغير بجانب رابط القائمة الرئيسية */
.custom-dropdown>.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-right: 0.5em;
    /* مسافة بين النص والسهم */
    vertical-align: 0.15em;
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
    transition: transform 0.3s ease;
}

/* 7. (اختياري) تدوير السهم عند فتح القائمة */
.custom-dropdown:hover>.dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: var(--background-btn);
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}


.floating-notebook-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: rgb(0, 51, 102);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
    z-index: 99;
    border-radius: 50%;
}

/* --- التصميم الرئيسي للشريط --- */
#price-bar-container {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    /* الخلفية المتدرجة */
    color: #ffffff;
    /* اللون الافتراضي للنص (أبيض) */
    display: flex;
    /* استخدام Flexbox لتوسيط المحتوى */
    justify-content: center;
    /* توسيط العناصر أفقيًا */
    align-items: center;
    /* توسيط العناصر عموديًا */
    padding: 0 15px;
    height: 50px;
    /* زيادة الارتفاع قليلاً لراحة العين */
}

/* حاوية كل عناصر الأسعار */
.price-bar-items {
    display: flex;
    align-items: center;
    gap: 20px;
    /* مسافة ثابتة بين كل عنصر والآخر */
}

/* تصميم كل عنصر سعر (التسمية + القيمة) */
.price-item {
    font-size: 16px;
}

/* تصميم تسمية العملة (مثال: "بيتكوين:") */
.price-label {
    opacity: 0.9;
    /* جعلها أقل بروزًا من السعر */
    margin-left: 5px;
    /* مسافة بسيطة بينها وبين السعر */
    font-size: 13px;
}

/* --- ✅ هذا هو أهم جزء: تصميم السعر باللون الأصفر --- */
.price-value {
    color: #ffd700;
    /* لون أصفر/ذهبي مميز */
    font-size: 13px;
}

/* تصميم الفاصل بين العملات */
.separator {
    color: #ffffff55;
    /* لون شفاف قليلاً للفاصل */
    font-size: 20px;
}


.currency-flag {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #ffd700;
    display: inline-block;
    margin-right: 15px;
}


/* --- ✅ التصميم الاحترافي للجوال (شبكة 2x3) --- */
@media (max-width: 768px) {
    #price-bar-container {
        height: auto;
        /* السماح للشريط بالتمدد عموديًا */
        padding: 15px 10px;
        /* تعديل البادينج لراحة العين */
    }

    #price-content-wrapper {
        flex-wrap: wrap;
        /* السماح للعناصر بالنزول لسطر جديد */
        gap: 0;
        /* إلغاء المسافة الأفقية، سنتحكم بها بالـ padding */
        row-gap: 15px;
        /* إضافة مسافة عمودية بين الأسطر */
    }

    /* ✅ 1. إخفاء الفاصل الأصلي القادم من HTML */
    .separator {
        display: none;
    }

    /* ✅ 2. جعل كل عنصر سعر يأخذ نصف العرض بالضبط */
    .price-item {
        flex-basis: 50%;
        /* كل عنصر يأخذ 50% من العرض */
        justify-content: center;
        /* توسيط محتوى كل عنصر سعر */
        box-sizing: border-box;
        /* لضمان أن البادينج لا يؤثر على العرض */
        font-size: 14px;
    }

    .price-value {
        font-size: 15px;
    }

    /* ✅ 3. إضافة فاصل بصري فقط للعناصر على اليمين (الفردية) */
    .price-item:nth-child(odd) {
        /* إنشاء الفاصل باستخدام بوردر على اليسار (لأننا RTL) */
        border-left: 1px solid #ffffff44;
        /* إضافة مسافة داخلية لدفع النص بعيدًا عن البوردر */
        padding-left: 10px;
    }

    /* العناصر على اليسار (الزوجية) */
    .price-item:nth-child(even) {
        padding-right: 10px;
    }
}

.sidebar-content {
    padding-left: 0px !important;
}

.main-article-title h2 {
    margin-right: 15px;
}

.main-article-title p {
    margin-right: 15px;
}

.floating-notebook-btn a {
    color: white;
}


/* --- التصميم الرئيسي للشريط --- */
.breaking-news-bar {
    color: #FFFFFF;
    /* ✅ تم حذف display: flex و align-items: center من هنا */
    /* لأن الأب المباشر للعناصر أصبح .container */
    padding: 0;
    /* تم حذف البادينج لينتقل إلى الـ container */
    overflow: hidden;
    position: relative;
    height: 50px;
    transition: transform 0.4s ease-out;
    background-color: #D32F2F;
}

/* ✅ --- هذا هو الكود الجديد والمهم --- ✅ */
/* نقوم بتطبيق خصائص الترتيب على الـ container */
.breaking-news-bar .container {
    display: flex;
    /* نجعل الكونتينر هو المسؤول عن الترتيب */
    align-items: center;
    /* لمحاذاة العناصر في المنتصف عموديًا */
    height: 100%;
    /* اجعل ارتفاعه يملأ الشريط بالكامل */
    padding: 0 15px;
    /* ننقل البادينج إلى هنا */
}


/* تصميم كلمة "عاجل" (لا تحتاج لتعديل) */
.breaking-label {
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    margin-left: 15px;
    flex-shrink: 0;
    z-index: 2;
    padding-right: 0px;
}

/* حاوية النص المتحرك (لا تحتاج لتعديل) */
.breaking-text-viewport {
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* الشريط الفعلي الذي سيتحرك (لا تحتاج لتعديل) */
.scrolling-text {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: max-content;
    animation: scroll-left-to-right 40s linear infinite;
}

/* باقي الكود يبقى كما هو دون أي تغيير */
.breaking-news-bar:hover .scrolling-text {
    animation-play-state: paused;
}

.scrolling-text a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 20px;
    white-space: nowrap;
    font-size: 18px;
    transition: color 0.2s;
}

.scrolling-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.breaking-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    opacity: 0.7;
    z-index: 2;
    transition: opacity 0.2s;
}

.breaking-close:hover {
    opacity: 1;
}

@keyframes scroll-left-to-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

b,
strong {
    font-weight: bold !important;
}

.no-side-margin {
    margin-right: 0;
    margin-left: 0;
}

.no-side-padding {
    padding-right: 0;
    padding-left: 0;
}



.main-nav .active {
    color: white;

}

.main-nav .active {
    background: #dc3545;
    border-radius: 20px;
}

.main-nav li a {
    padding: 5px 10px;
    border-radius: 20px;
}

.main-nav .li-nav .nav-link {
    padding: 5px 10px;
    border-radius: 20px;
}

.main-nav li {
    display: block;
    text-decoration: none;
    font-weight: 600;

    transition: all 0.3s ease;
    position: relative;

    margin-left: 5px;
}

/* --- 2. تأثير الـ Hover والحالة النشطة (Active) للعناصر العادية (غير المنسدلة) --- */
/* نطبق التأثير على الرابط 'a' مباشرة بدلاً من الـ 'li' */
.main-nav>ul>li:not(.custom-dropdown)>a:hover,
.main-nav>ul>li:not(.custom-dropdown).active>a {
    background-color: #dc3545;
    /* لون الخلفية الأحمر */
    color: white;
    /* لون الخط الأبيض */

}


/* --- 3. التعامل مع القوائم المنسدلة (Dropdown) --- */
/* عندما تكون الفأرة فوق العنصر 'li' الذي يحتوي على قائمة منسدلة،
   لا نطبق أي تغيير على الخلفية أو اللون */
.main-nav>ul>li.custom-dropdown:hover>a,
.main-nav>ul>li.custom-dropdown.active>a {
    /* يمكنك إضافة لون خلفية خفيف هنا إذا أردت إبراز العنصر المفتوح */
    background-color: #dc3545;
    color: #fff;
    /* التأكد من أن لون الخط لا يتغير */
}

/* --- 4. (مهم جدًا) إزالة أي تأثيرات قديمة وغير مرغوب فيها --- */
/* هذا يضمن أن الكود القديم لن يتعارض مع الجديد */



/* 1. الحاوية الرئيسية (الشكل البيضاوي) */
.search-bar {
    display: flex;
    /* لوضع العناصر جنبًا إلى جنب */
    align-items: center;
    /* لمحاذاة العناصر عموديًا في المنتصف */
    background-color: #f5f5f5;
    /* لون الخلفية الرمادي الفاتح */
    border-radius: 25px;
    /* رقم كبير جدًا لعمل الشكل البيضاوي */
    padding: 5px;
    /* مسافة داخلية بسيطة */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    /* ظل ناعم واحترافي */
    max-width: 210px;
    /* تحديد عرض أقصى للشريط */
    border: 1px solid #e0e0e0;
    /* إطار خفيف جدًا */
}


/* 2. حقل الإدخال (مكان الكتابة) */
.search-bar input {
    border: none;
    /* إزالة الإطار الافتراضي */
    outline: none;
    /* إزالة الإطار الأزرق عند التركيز (Focus) */
    background: transparent;
    /* جعل الخلفية شفافة */
    flex-grow: 1;
    /* أهم خاصية: تجعل حقل الإدخال يملأ كل المساحة المتاحة */
    padding: 10px 15px;
    /* مسافة داخلية للنص */
    font-size: 16px;
    /* حجم خط مقروء */
    font-family: 'Cairo', 'Tahoma', sans-serif;
    /* خط عربي جميل */
    color: #555;
    /* لون النص عند الكتابة */
    text-align: right;
    /* محاذاة النص لليمين للغة العربية */
}

/* تعديل لون النص المؤقت (Placeholder) */
.search-bar input::placeholder {
    color: #aaa;
}

/* 3. زر البحث (الأيقونة الدائرية) */
.search-bar button {
    border: none;
    background-color: #e63946;
    /* لون أحمر عصري مشابه للصورة */
    width: 45px;
    /* عرض الزر */
    height: 45px;
    /* ارتفاع الزر */
    border-radius: 50%;
    /* لجعله دائريًا تمامًا */
    display: flex;
    /* لتوسيط الأيقونة بالداخل */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* تغيير شكل المؤشر عند التمرير */
    flex-shrink: 0;
    /* منعه من الانكماش */
    transition: background-color 0.2s;
}

/* تغيير اللون عند التمرير فوق الزر */
.search-bar button:hover {
    background-color: #d0313e;
}

/* 4. أيقونة البحث نفسها */
.search-bar button i {
    color: #a8d0e6;
    /* لون أزرق سماوي فاتح للأيقونة */
    font-size: 18px;
}

.article-meta {
    margin-top: 8px;
    font-size: 13px;
    color: #777;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.article-meta i {
    margin-right: 5px;
    color: #999;
}

.category-article-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.category-article-meta i {
    margin-right: 5px;
    color: #888;
}

.category-article-date,
.category-article-views {
    display: flex;
    align-items: center;
    gap: 5px;
}



.article-photographer {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9f9f9;
    padding: 6px 10px;
    border-radius: 6px;
    width: fit-content;
}

.article-photographer i {
    color: #d35400;
    /* لون الكاميرا */
}


.person-job {
    display: block;
    color: #a0a0a0;
    /* فضي */
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    margin-bottom: 20px;
}



.header-icon-btn {
    background: none; border: none; font-size: 20px; cursor: pointer;
}

/* --- ✅ 2. تصميم حاوية شريط البحث (الأهم) --- */
.full-width-search-bar {
    background-color: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    
    /* --- التحويل إلى Position Absolute --- */
    position: absolute;
    top: 185px; /* ✅ هام جدًا: اضبط هذا الرقم ليساوي ارتفاع الهيدر لديك */
    left: 0;
    width: 100%;
    z-index: 999; /* لضمان ظهوره فوق كل العناصر الأخرى */
    
    /* --- آلية الإخفاء والإظهار الجديدة (باستخدام Transform) --- */
    opacity: 0; /* ابدأ شفافًا */
    transform: translateY(-100%); /* ابدأ فوق الشاشة تمامًا */
    visibility: hidden; /* إخفاؤه تمامًا لتحسين الأداء */
    transition: transform 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s;
}

/* كلاس يتم إضافته عبر JavaScript لإظهار الشريط */
.full-width-search-bar.show {
    opacity: 1; /* أظهره بالكامل */
    transform: translateY(0); /* أنزله إلى مكانه الطبيعي */
    visibility: visible; /* اجعله مرئيًا */
}

/* 3. تصميم الفورم الداخلي (يبقى كما هو) */
.search-form { display: flex; width: 95%; }
.search-input {
    flex-grow: 1; border: 1px solid #ccc; border-left: none;
    padding: 10px 20px; font-size: 18px; border-radius: 0 8px 8px 0; outline: none;
}
.search-submit-btn {
    background-color: #888; color: white; border: 1px solid #888;
    padding: 0 30px; font-size: 18px; font-weight: bold; cursor: pointer;
    border-radius: 8px 0 0 8px; transition: background-color 0.2s;
}
.search-submit-btn:hover { background-color: #666; }

/* 4. تصميم زر الإغلاق (يبقى كما هو، ولكن سنضيف له position: relative) */
.full-width-search-bar .container {
    position: relative; /* ضروري لضبط موضع زر الإغلاق */
}
.close-search-btn {
    position: absolute; top: 50%; transform: translateY(-50%); /* توسيط عمودي مثالي */
    left: 20px; background: none; border: none; font-size: 30px;
    color: #999; cursor: pointer; line-height: 1;
}



/* --- تصميم صفحة نتائج البحث --- */
.search-header {
    text-align: right;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
}
.search-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}
.search-query {
    color: #007bff; /* لون مميز لكلمة البحث */
}
.search-count {
    font-size: 16px;
    color: #6c757d;
}

/* تصميم كارت كل نتيجة بحث */
.search-result-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.search-result-img-wrapper {
    flex-shrink: 0;
    width: 250px;
}
.search-result-content {
    padding: 20px;
}
.search-result-title a {
    color: #212529;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
/* تصميم إبراز كلمة البحث */
.search-result-title mark,
.search-result-excerpt mark {
    background-color: #fff3cd; /* لون أصفر فاتح */
    padding: 0 2px;
}

.search-result-excerpt {
    font-size: 15px;
    color: #495057;
    margin-top: 10px;
    line-height: 1.6;
}
.search-result-meta {
    font-size: 13px;
    color: #6c757d;
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

/* رسالة عدم وجود نتائج */
.no-results-found {
    text-align: center;
    padding: 50px;
}

.search-result-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-logo{
    margin-bottom: 20px;
}






.social-icons-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #003366;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}
.article-h3{
    font-size: 18px !important;
    font-weight: 600;
    color: var(--background-btn);
}

.social-icons-footer a svg {
    width: 20px;
    height: 20px;
}

.social-icons-footer a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ألوان حسب المنصة */
.social-icons-footer a[title="فيسبوك"]:hover { background-color: #1877f2; }
.social-icons-footer a[title="يوتيوب"]:hover { background-color: #ff0000; }
.social-icons-footer a[title="تلغرام"]:hover { background-color: #0088cc; }
.social-icons-footer a[title="إنستغرام"]:hover { 
    background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons-footer a[title="منصة اكس"]:hover { background-color: #000; }
