.newsroom-shell {
    width: min(1240px, 94%);
    margin: 0 auto;
    padding: 60px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.newsroom-hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1.3fr);
    gap: 28px;
    backdrop-filter: blur(12px);
}

.newsroom-hero--single {
    grid-template-columns: minmax(0, 1fr);
}

.newsroom-hero__primary,
.newsroom-hero__sidebar {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.newsroom-hero__slider {
    position: relative;
    min-height: 420px;
}

.newsroom-hero__slide {
    display: none;
    gap: 24px;
    align-items: stretch;
}

.newsroom-hero__slide.is-active {
    display: flex;
    animation: fadeIn 0.6s ease;
}

.newsroom-hero__media {
    width: 55%;
    border-radius: 24px;
    overflow: hidden;
}

.newsroom-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.newsroom-hero__meta {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #f8fafc;
}

.newsroom-hero__meta h1,
.newsroom-hero__meta h1 a {
    color: inherit;
    margin: 0;
    font-size: clamp(24px, 3.5vw, 34px);
    text-decoration: none;
}

.newsroom-hero__meta p {
    color: rgba(248, 250, 252, 0.8);
    line-height: 1.8;
}

.newsroom-hero__actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsroom-hero__next {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.newsroom-hero__next:hover {
    transform: translateX(-4px);
}

.newsroom-hero__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsroom-ticker {
    background: rgba(15, 23, 42, 0.65);
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsroom-ticker__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: #fbbf24;
}

.newsroom-ticker__header .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fbbf24;
    animation: pulse 1.8s infinite;
}

.newsroom-ticker__items {
    max-height: 220px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsroom-ticker__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(148, 163, 184, 0.12);
    color: #e2e8f0;
    text-decoration: none;
}

.newsroom-summary {
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
}

.newsroom-ad-slot {
    border-radius: 30px;
    padding: 32px;
    background: linear-gradient(120deg, rgba(59, 7, 100, 0.9), rgba(67, 56, 202, 0.85));
    border: 1px solid rgba(167, 139, 250, 0.4);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.25);
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsroom-ad-slot__link,
.newsroom-ad-slot__placeholder {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.2rem;
}

.newsroom-grid {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 32px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 32px;
    box-shadow: 0 30px 50px rgba(15, 23, 42, 0.15);
}

.newsroom-grid__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.newsroom-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.newsroom-filter__pill {
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 999px;
    padding: 8px 16px;
    background: transparent;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsroom-filter__pill.is-active,
.newsroom-filter__pill:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.6);
}

.newsroom-grid__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.newsroom-card {
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.newsroom-card__media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.newsroom-card__body {
    padding: 18px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #cbd5f5;
}

.newsroom-card__meta {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.9);
    display: flex;
    justify-content: space-between;
}

.newsroom-card__link {
    margin-top: auto;
    color: #a5b4fc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

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

.newsroom-spotlight,
.newsroom-analysis {
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.7);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.newsroom-spotlight__card {
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 18px;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsroom-spotlight__badge {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    font-size: 0.8rem;
}

.newsroom-analysis__list article {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.newsroom-analysis__list article:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.newsroom-btn.primary {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    padding: 10px 24px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.8rem;
    color: #e2e8f0;
}

.newsroom-empty {
    padding: 40px;
    text-align: center;
    color: rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    border: 1px dashed rgba(148, 163, 184, 0.4);
}

@media (max-width: 992px) {
    .newsroom-hero {
        grid-template-columns: 1fr;
    }
    .newsroom-hero__slide {
        flex-direction: column;
    }
    .newsroom-hero__media,
    .newsroom-hero__meta {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .newsroom-shell {
        padding: 36px 0 60px;
    }
    .newsroom-grid {
        padding: 24px;
    }
    .newsroom-filter__pill {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* استایل‌های بنر پیش‌فرض پورتال خبری */
.newsroom-banner-premium {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsroom-banner-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 64, 175, 0.4) !important;
}

.newsroom-banner-premium a:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5) !important;
    background: #f0f9ff !important;
    color: #1e40af !important;
}

@media (max-width: 768px) {
    .newsroom-banner-premium {
        padding: 32px 24px !important;
    }
    .newsroom-banner-premium h3 {
        font-size: 22px !important;
    }
    .newsroom-banner-premium p {
        font-size: 14px !important;
    }
    .newsroom-banner-premium a {
        padding: 14px 32px !important;
        font-size: 15px !important;
    }
}

