.news-show-page {
    background: #f6f7fb;
    direction: rtl;
    padding-top: 50px;
    padding-bottom: 28px;
}
.news-main-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}
.news-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}
.news-hero-card,
.news-cover-wrap,
.news-content-wrap,
.news-tags-box,
.sidebar-card {
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(28, 38, 54, 0.04);
}
.news-hero-card { padding: 20px; }
.news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7b8796;
    font-size: 13px;
    margin-bottom: 10px;
}
.news-breadcrumb a { color: #7b8796; text-decoration: none; }
.news-breadcrumb a:hover { color: #117098; }
.news-category-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e7f4fa;
    color: #117098;
    font-family: DIN-Bold, sans-serif;
    font-size: 12px;
    text-decoration: none;
}
.news-main-title {
    margin: 12px 0;
    color: #161d29;
    font-family: DIN-Bold, sans-serif;
    font-size: clamp(1.5rem, 2.3vw, 2.15rem);
    line-height: 1.5;
}
.news-main-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: #6f7a89;
    font-size: 13px;
    font-family: DIN-Regular, sans-serif;
}
.news-main-meta i { margin-left: 6px; color: #117098; }
.news-hero-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.news-cover-wrap {
    overflow: hidden;
    margin-top: 0;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.news-cover-image {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    display: block;
}
.news-content-wrap {
    margin-top: 0;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.news-content-body {
    font-size: 1.06rem;
    line-height: 2;
    color: #2a3341;
    padding: 22px;
}
.news-content-body p,
.news-content-body ul,
.news-content-body ol { margin-bottom: 1.1rem; }
.news-content-body h2,
.news-content-body h3,
.news-content-body h4 {
    margin: 1.7rem 0 .9rem;
    font-family: DIN-Bold, sans-serif;
    color: #1a2230;
}
.news-content-body blockquote {
    margin: 1.3rem 0;
    padding: 12px 14px;
    border-right: 4px solid #117098;
    background: #f1f9fd;
    border-radius: 8px;
}
.news-content-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
}
.news-gallery-inline {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eceef3;
}
.news-gallery-inline h6,
.news-comments-box h6,
.news-comment-form-section h6 {
    font-family: DIN-Bold, sans-serif;
    font-size: 1.1rem;
    color: #1a2230;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e4eaf2;
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-gallery-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 12px;
    align-items: stretch;
    max-width: 900px;
}
.news-gallery-stage {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
    min-height: 260px;
}
.news-gallery-main {
    width: 100%;
    height: clamp(260px, 40vw, 420px);
    object-fit: cover;
    display: block;
}
.news-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 4px;
    background: rgba(255,255,255,.9);
    color: #111827;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-gallery-nav:hover { background: #fff; }
.news-gallery-nav--prev { right: 12px; }
.news-gallery-nav--next { left: 12px; }
.news-gallery-thumbs {
    display: grid;
    gap: 10px;
    max-height: clamp(260px, 40vw, 420px);
    overflow-y: auto;
    padding-inline-start: 2px;
    scrollbar-width: thin;
    scrollbar-color: #9fb6c8 #eef3f7;
}
.news-gallery-thumbs::-webkit-scrollbar { width: 8px; }
.news-gallery-thumbs::-webkit-scrollbar-track { background: #eef3f7; border-radius: 999px; }
.news-gallery-thumbs::-webkit-scrollbar-thumb { background: #9fb6c8; border-radius: 999px; }
.news-gallery-thumb {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 8px;
    cursor: pointer;
    border: 0px solid transparent;
    transition: border-color .15s ease, opacity .15s ease;
}
.news-gallery-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
}
.news-gallery-thumb:hover img { transform: scale(1.04); }
.news-gallery-thumb.is-active { border-color: #117098; opacity: 1; }
.news-comments-box {
    margin-top: 16px;
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(28, 38, 54, 0.04);
    padding: 16px;
}
.news-comment-form {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}
.news-comment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.news-comment-input,
.news-comment-textarea {
    width: 100%;
    border: 1px solid #d8deea;
    border-radius: 10px;
    padding: 10px 12px;
    font-family: DIN-Regular, sans-serif;
    font-size: 14px;
    outline: none;
}
.news-comment-input:focus,
.news-comment-textarea:focus {
    border-color: #117098;
    box-shadow: 0 0 0 3px rgba(17, 112, 152, .12);
}
.news-comment-textarea { min-height: 95px; resize: vertical; }
.news-comment-submit {
    justify-self: start;
    border: 0;
    border-radius: 5px;
    padding: 9px 18px;
    background: #117098;
    color: #fff;
    font-family: DIN-Bold, sans-serif;
    cursor: pointer;
}
.news-comments-list { display: grid; gap: 10px; margin-bottom: 20px; }
.news-comment-item {
    border: 1px solid #eceef3;
    border-radius: 10px;
    padding: 10px 12px;
}
.news-comment-author {
    font-family: DIN-Bold, sans-serif;
    font-size: 14px;
    margin-bottom: 2px;
    color: #1a2230;
    display: flex;
    align-items: center;
    gap: 5px;
}
.news-comment-author i { color: #117098; font-size: 13px; }
.news-comment-meta {
    color: #7d8898;
    font-size: 12px;
    font-family: DIN-Regular, sans-serif;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.news-comment-meta i { font-size: 11px; color: #a0aab4; }
.news-comment-body {
    color: #1f2a3b;
    font-size: 14px;
    font-family: DIN-Regular, sans-serif;
    line-height: 1.8;
    white-space: pre-wrap;
}
.news-comment-message {
    font-size: 13px;
    font-family: DIN-Regular, sans-serif;
    margin-bottom: 8px;
}
.news-comment-message.error { color: #b42318; }
.news-comment-message.success { color: #117098; }
.news-comment-actions { margin-top: 6px; }
.news-comment-reply-btn {
    border: 0;
    background: none;
    color: #117098;
    font-size: 12px;
    font-family: DIN-Regular, sans-serif;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background .15s ease, color .15s ease;
}
.news-comment-reply-btn:hover { background: #e7f4fa; text-decoration: none; }
.news-comment-replies {
    margin-top: 10px;
    padding-right: 16px;
    border-right: 3px solid #d8eaf3;
    display: grid;
    gap: 8px;
}
.news-comment-replies .news-comment-item { background: #f7fafb; }
.news-comment-inline-form {
    margin-top: 10px;
    padding: 10px 12px;
    background: #f3f8fb;
    border: 1px solid #dae6ef;
    border-radius: 10px;
    display: grid;
    gap: 8px;
}
.news-comment-inline-form input,
.news-comment-inline-form textarea {
    width: 100%;
    border: 1px solid #d0dae6;
    border-radius: 8px;
    padding: 8px 10px;
    font-family: DIN-Regular, sans-serif;
    font-size: 13px;
    outline: none;
    background: #fff;
}
.news-comment-inline-form input:focus,
.news-comment-inline-form textarea:focus {
    border-color: #117098;
    box-shadow: 0 0 0 3px rgba(17,112,152,.1);
}
.news-comment-inline-form textarea { min-height: 72px; resize: vertical; }
.news-comment-inline-btns { display: flex; gap: 8px; align-items: center; }
.news-comment-inline-submit {
    border: 0;
    border-radius: 999px;
    padding: 7px 16px;
    background: #117098;
    color: #fff;
    font-family: DIN-Bold, sans-serif;
    font-size: 13px;
    cursor: pointer;
}
.news-comment-inline-submit:disabled { opacity: .6; cursor: default; }
.news-comment-inline-cancel {
    border: 1px solid #c5d1dc;
    border-radius: 999px;
    padding: 7px 14px;
    background: #fff;
    font-family: DIN-Regular, sans-serif;
    font-size: 13px;
    cursor: pointer;
    color: #556070;
}
.news-comment-form-section {
    border-top: 1px solid #eceef3;
    padding-top: 16px;
    margin-top: 4px;
}
.news-comment-terms-note {
    font-size: 12px;
    color: #8a95a3;
    margin-top: 6px;
    font-family: DIN-Regular, sans-serif;
}
.news-comment-terms-note a { color: #117098; text-decoration: underline; }
.news-comment-terms-note a:hover { color: #0d5a78; }
.news-tags-box { margin-top: 16px; padding: 16px; }
.news-tags-box h6 { font-family: DIN-Bold, sans-serif; margin: 0 0 10px; }
.news-tag-pill {
    display: inline-flex;
    align-items: center;
    background: #f3f5f8;
    color: #485264;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-family: DIN-Regular, sans-serif;
}
.sidebar-card { padding: 16px; }
.sidebar-card + .sidebar-card { margin-top: 16px; }
.sidebar-title {
    font-size: 1rem;
    font-family: DIN-Bold, sans-serif;
    color: #1c2433;
    margin-bottom: 12px;
}
.mini-news-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 10px;
    transition: .2s ease;
}
.mini-news-item + .mini-news-item { margin-top: 8px; }
.mini-news-item:hover { background: #f7f8fb; }
.mini-news-item img { width: 86px; height: 70px; object-fit: cover; border-radius: 8px; }
.mini-news-item h6 {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2a3b;
    font-family: DIN-Bold, sans-serif;
}
.mini-news-item small { color: #7d8898; font-size: 12px; font-family: DIN-Regular, sans-serif; }
@media (max-width: 1199.98px) {
    .news-layout-grid { grid-template-columns: 1fr; }
    .news-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .sidebar-card + .sidebar-card { margin-top: 0; }
}
@media (max-width: 767.98px) {
    .news-show-page { padding-top: 12px; padding-bottom: 18px; }
    .news-hero-card,
    .news-cover-wrap,
    .news-content-wrap,
    .news-tags-box,
    .sidebar-card { border-radius: 12px; }
    .news-hero-card,
    .news-tags-box,
    .sidebar-card { padding: 14px; }
    .news-comments-box { border-radius: 12px; padding: 14px; }
    .news-gallery-shell { grid-template-columns: 1fr; max-width: 100%; gap: 8px; }
    .news-gallery-main { height: 240px; }
    .news-gallery-thumbs {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(96px, 1fr);
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        padding-bottom: 4px;
    }
    .news-gallery-thumb img { height: 78px; }
    .news-gallery-nav { width: 34px; height: 34px; font-size: 20px; }
    .news-comment-grid { grid-template-columns: 1fr; }
    .news-cover-image { max-height: 260px; }
    .news-content-body { padding: 16px; font-size: 1rem; }
    .news-sidebar { grid-template-columns: 1fr; }
}
/* WhatsApp sidebar overrides */
.news-sidebar .wa-sub-section { padding: 0; }
.news-sidebar .wa-sub-card { flex-direction: column; min-height: unset; }
.news-sidebar .wa-sub-info {
    flex: unset;
    padding: 24px 20px 18px;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    gap: 12px;
}
.news-sidebar .wa-sub-logo-text { font-size: 17px; }
.news-sidebar .wa-sub-desc { font-size: 13px; max-width: 100%; }
.news-sidebar .wa-sub-perks li { font-size: 13px; }
.news-sidebar .wa-sub-form-wrap { padding: 20px; gap: 0; }
.news-sidebar .wa-sub-form-title { font-size: 15px; margin-bottom: 14px; }
.news-sidebar .wa-sub-btn { font-size: 14px; padding: 11px 20px; margin-top: 14px; }

/* ── Bookmark / favorites button ─────────────────────────────────── */
.news-fav-bar { display: flex; margin-top: 10px; }
.news-fav-btn { display: inline-flex; align-items: center; gap: 7px; padding: 7px 18px; border-radius: 22px; border: 1.5px solid #117098; background: #fff; color: #117098; font-size: 14px; font-family: 'DIN-Regular', sans-serif; cursor: pointer; text-decoration: none; transition: all .2s; }
.news-fav-btn:hover, .news-fav-btn.is-favorited { background: #117098; color: #fff; }
.news-fav-btn i { font-size: 16px; }
