.news-detail-page {
    padding: 48px 0 70px;
    background: #f4f5f7;
}

.news-detail-wrapper {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    padding: 0;
    margin: 0 auto;
    box-sizing:border-box;
}

.news-detail-top {
    margin-bottom: 18px;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2d5882;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.news-back-link:hover {
    opacity: 0.85;
}

.news-flash {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
}

.news-flash.success {
    background: #e9f8ef;
    color: #1f6f3d;
    border: 1px solid #cdebd8;
}

.news-flash.error {
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #f3c7c7;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    gap: 72px;
    align-items: start;
    justify-content: center;
}

.news-detail-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.news-detail-cover {
    width: 100%;
    background: #ececec;
}

.news-detail-cover img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-detail-content {
    padding: 34px 0 44px;
    max-width: 760px;
}

.news-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #a0a0a0;
}

.news-detail-title {
    margin: 0 0 10px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.14;
    color: #013160;
    letter-spacing: 0;
}

.news-detail-meta {
    margin: 0 0 34px;
    font-size: 18px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

.news-share-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: -14px 0 34px;
}

.news-share-bar span {
    margin-right: 2px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.news-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid #d7dce5;
    border-radius: 999px;
    background: #ffffff;
    color: #173B8F;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.news-share-btn:hover {
    transform: translateY(-1px);
    border-color: #fdc500;
    background: #fff8d8;
    color: #013160;
}

.news-share-btn i,
.news-share-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.news-detail-body {
    padding-top: 4px;
    color: #273344;
    font-size: 19px;
    line-height: 1.72;
    font-weight: 400;
    overflow-wrap: anywhere;
}

.news-detail-body p {
    margin: 0 0 22px;
}

.news-detail-body h1,
.news-detail-body h2,
.news-detail-body h3,
.news-detail-body h4,
.news-detail-body h5,
.news-detail-body h6 {
    margin-top: 24px;
    margin-bottom: 14px;
    color: #0f172a;
}

.news-detail-body ul,
.news-detail-body ol {
    margin: 0 0 18px 22px;
}

.news-side-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 120px;
}

.news-side-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.side-card-title {
    margin: 0 0 16px;
    font-size: 18px;
    color: #0f172a;
}

.reaction-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reaction-form {
    margin: 0;
}

.reaction-btn {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    transition: 0.2s ease;
}

.reaction-btn strong {
    margin-left: auto;
    font-size: 15px;
}

.reaction-btn:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.reaction-btn.active-like {
    background: #eef6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
}

.reaction-btn.active-dislike {
    background: #fff1f2;
    border-color: #fda4af;
    color: #be123c;
}

.reaction-note {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-form label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.comment-form textarea {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
    min-height: 120px;
}

.comment-form textarea:focus {
    border-color: #5ca9f6;
    box-shadow: 0 0 0 3px rgba(92, 169, 246, 0.10);
}

.comment-helper-text {
    margin: -2px 0 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.comment-submit-btn {
    margin-top: 4px;
    border: none;
    border-radius: 14px;
    padding: 13px 16px;
    background: #2d5882;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.comment-submit-btn:hover {
    opacity: 0.92;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.comment-count {
    min-width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
}

.comment-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f7;
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #e9f4fe;
    color: #216cb6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.comment-name {
    color: #0f172a;
    font-size: 14px;
}

.comment-date {
    font-size: 12px;
    color: #94a3b8;
}

.comment-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    word-wrap: break-word;
}

.comment-empty-state {
    padding: 12px 0 4px;
    font-size: 14px;
    color: #64748b;
}

.news-empty-state {
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

@media (max-width: 1100px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-side-panel {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .news-detail-page {
        padding: 30px 0 50px;
    }

    .news-detail-content {
        padding: 22px 18px 28px;
    }

    .news-detail-title {
        font-size: 44px;
    }

    .news-side-card {
        padding: 16px;
    }
}
.news-detail-body img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 18px auto;
}

.news-detail-body p img {
    margin-top: 12px;
    margin-bottom: 12px;
}

.news-detail-body figure {
    margin: 20px 0;
}

.news-detail-body iframe,
.news-detail-body video {
    max-width: 100%;
}

.fb-reaction-card .side-card-title {
    margin-bottom: 14px;
}

.fb-reaction-top-row {
    padding-bottom: 14px;
    border-bottom: 1px solid #eceff5;
    margin-bottom: 16px;
}

.fb-reaction-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: #64748b;
}

.fb-reaction-counts strong {
    color: #0f172a;
}

.fb-reaction-actions {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fb-reaction-action-form {
    margin: 0;
}

.fb-reaction-circle-btn {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: 82px;
    text-decoration: none;
}

.fb-reaction-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.fb-reaction-circle svg {
    width: 34px;
    height: 34px;
    stroke-width: 2.2;
    color: #ffffff;
}

.fb-reaction-circle-btn:hover .fb-reaction-circle {
    transform: translateY(-2px);
    opacity: 0.95;
}

.fb-reaction-label {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.like-circle {
    background: #3b82f6;
}

.dislike-circle {
    background: #e11d48;
}

.comment-circle {
    background: #60a5fa;
}

.is-active-like .fb-reaction-circle {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18), 0 10px 20px rgba(15, 23, 42, 0.08);
}

.is-active-dislike .fb-reaction-circle {
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.18), 0 10px 20px rgba(15, 23, 42, 0.08);
}

.fb-comments-section {
    border-top: 1px solid #eceff5;
    padding-top: 18px;
}

.comment-compose-wrap {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #edf1f7;
}

.comment-compose-wrap.show-comment-compose {
    display: block;
}

.fb-comment-form textarea {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    resize: vertical;
    min-height: 110px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fb-comment-form textarea:focus {
    border-color: #5ca9f6;
    box-shadow: 0 0 0 3px rgba(92, 169, 246, 0.10);
}

.fb-comment-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px;
}

.comment-cancel-btn {
    border: 1px solid #dbe2ea;
    background: #ffffff;
    color: #475569;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.comment-cancel-btn:hover {
    background: #f8fafc;
}

.comment-submit-btn {
    border: none;
    border-radius: 12px;
    padding: 11px 18px;
    background: #2d5882;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.comment-submit-btn:hover {
    opacity: 0.92;
}

@media (max-width: 768px) {
    .fb-reaction-actions {
        justify-content: center;
    }

    .fb-reaction-circle {
        width: 66px;
        height: 66px;
    }

    .fb-reaction-circle svg {
        width: 30px;
        height: 30px;
    }
}
.news-gallery{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:16px;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:0.3s ease;
}

.gallery-item img:hover{
    transform:scale(1.03);
}
.single-column-layout{
    display:block !important;
}

.news-detail-cover{
    width:100%;
    margin-top:40px;
}

.news-detail-cover img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
}

.news-detail-content{
    background: transparent;
    padding:40px;
    border-radius:24px;
    width:100%;
}

.news-gallery{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.gallery-item img{
    width:100%;
    border-radius:20px;
    display:block;
}



.slider-wrapper{
    position:relative;
}



.slide.active{
    display:block !important;
}

.slide img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:0;
    display:block;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    font-size:50px;
    cursor:pointer;
    z-index:10;
    color:black;
}

.prev-btn{
    left:-60px;
}

.next-btn{
    right:-60px;
}

.slider-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:20px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#b38b59;
    opacity:0.4;
    cursor:pointer;
}

.active-dot{
    opacity:1;
}
.news-slider {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
    color: black;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #d8cfc0;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active-dot {
    background: #8b5e34;
}
.news-slider {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    position: relative;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 16px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.5);
    color: white;

    font-size: 28px;
    cursor: pointer;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
}

.active-dot {
    background: #3a94ed;
}

.news-comments-section {
    margin-top: 60px;
}
.news-slider {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.55);
    color: white;

    font-size: 30px;
    cursor: pointer;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d1d1;
    cursor: pointer;
}

.active-dot {
    background: #3a94ed;
}

.news-comments-section {
    margin-top: 60px;
}
.news-images-gallery{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:30px;
}

.news-image-item{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:16px;
    background:#f5f5f5;
    padding:10px;
}


.news-detail-layout{
    display:grid;
    grid-template-columns: minmax(0, 760px) 320px;
    gap:72px;
    align-items:start;
    justify-content:center;
}

.news-sidebar{
    position:sticky;
    top:120px;
}

.sidebar-title{
    font-size:30px;
    margin-bottom:25px;
    color:#013160;
    font-weight:800;
    line-height:1.1;
}

.related-news-card{
    display:flex;
    gap:16px;
    text-decoration:none;
    margin-bottom:18px;
    color:#000;

    padding: 10px;
    border-radius: 12px;
    align-items:center;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}
.related-news-card:hover{
    background-color: #e5edf5;
    transform: translateX(4px);
}
.related-news-card img{
    width:130px;
    height:96px;
    object-fit:cover;
    border-radius:10px;
    flex-shrink:0;
}

.related-news-info h4{
    margin:0 0 8px;
    font-size:17px;
    line-height:1.28;
}

.related-news-info p{
    margin:0;
    font-size:12px;
    color:#888;
}

.news-source-reference {
    margin: 32px 0 28px;
    padding: 18px 20px;
    border-left: 4px solid #013160;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.news-source-reference strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 16px;
}

.news-source-title {
    margin-bottom: 6px;
    color: #1d2b3a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.news-source-description {
    margin-bottom: 10px;
    color: #475569;
    font-size: 15px;
    line-height: 1.55;
}

.news-source-link {
    color: #005ebc;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.news-share-bar {
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin:-14px 0 34px;
}

.news-share-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:38px;
    padding:9px 13px;
    border:1px solid #d7dce5;
    border-radius:999px;
    background:#fff;
    color:#173B8F;
    font:inherit;
    font-size:14px;
    font-weight:800;
    line-height:1;
    text-decoration:none;
    cursor:pointer;
    transition:background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.news-share-btn:hover {
    transform:translateY(-1px);
    border-color:#fdc500;
    background:#fff8d8;
    color:#013160;
}

.news-share-btn i,
.news-share-btn svg {
    width:16px;
    height:16px;
    flex-shrink:0;
}

/* MAIN CONTENT */
.news-detail-content{
   background:transparent;
    padding:34px 0 44px;
    border-radius:24px;
    width:100%;
    max-width:760px;
}

/* BIGGER IMAGES */
.news-gallery-image{
    width:100%;
    max-width:100%;
    height:auto;
    max-height:900px;

    object-fit:contain;

    margin:0 auto 25px;
    display:block;
    border-radius:0;

    background:#f5f5f5;
}

/* MOBILE */
@media(max-width:991px){

    .news-detail-layout{
        grid-template-columns:1fr;
        gap:36px;
    }

    .news-sidebar{
        position:static;
    }

    .news-detail-wrapper {
        width: min(100% - 32px, 760px);
    }

    .news-detail-content {
        max-width: 100%;
        padding: 26px 0 34px;
    }

}

@media(max-width:640px){
    .news-detail-title {
        font-size: 32px;
    }

    .news-detail-meta {
        font-size: 14px;
        line-height: 1.5;
    }

    .news-detail-body {
        font-size: 17px;
        line-height: 1.7;
    }

    .related-news-card {
        align-items:flex-start;
    }

    .related-news-card img,
    .related-news-card .related-news-placeholder {
        width: 96px;
        height: 76px;
        min-width: 96px;
    }
}
.news-comments-section{
    margin-top:40px;
}

.fb-reaction-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:24px;
}

.fb-reaction-top-row{
    margin-bottom:20px;
}

.fb-reaction-counts{
    display:flex;
    gap:18px;
    color:#666;
    font-size:14px;
}

.fb-reaction-actions{
    display:flex;
    gap:12px;
    margin-bottom:25px;
}

.fb-reaction-circle-btn{
    border:none;
    background:#f3f4f6;
    padding:10px 18px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

.fb-reaction-circle-btn:hover{
    background:#e5e7eb;
}

.is-active-like{
    background:#dbeafe;
    color:#2563eb;
}

.is-active-dislike{
    background:#fee2e2;
    color:#dc2626;
}

.fb-comments-section{
    margin-top:20px;
}

.comment-list{
    margin-bottom:20px;
}

.comment-item{
    padding:14px 0;
    border-bottom:1px solid #eee;
}

.comment-item p{
    margin-top:6px;
    color:#444;
}

.comment-form textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px;
    resize:vertical;
    margin-bottom:12px;
}

.comment-submit-btn{
    background:#2d5882;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:10px;
    cursor:pointer;
}
.modern-comment-form{
    margin-top:30px;
    padding:28px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
}

.comment-form-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:8px;
    color:#111827;
}

.comment-form-subtitle{
    font-size:14px;
    color:#6b7280;
    margin-bottom:22px;
}

.comment-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:16px;
}

.comment-input,
.comment-textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:10px;
    padding:14px 16px;
    font-size:15px;
    outline:none;
    transition:.2s ease;
    margin-bottom:16px;
    background:#fff;
}

.comment-input:focus,
.comment-textarea:focus{
    border-color:#2d5882;
    box-shadow:0 0 0 3px rgba(45, 88, 130,.12);
}

.comment-textarea{
    resize:vertical;
    min-height:180px;
}

.comment-checkbox-wrap{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:22px;
    font-size:14px;
    color:#4b5563;
}

.modern-comment-btn{
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:12px 22px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
}

.modern-comment-btn:hover{
    opacity:.92;
}

@media(max-width:768px){

    .comment-form-grid{
        grid-template-columns:1fr;
    }

}
/* COMMENTS SECTION */

.news-comments-section{
    width:100%;
    display:flex;
    justify-content:center;
    padding:70px 20px;
}

.fb-reaction-card{
    width:100%;
    max-width:850px;
    background:#ffffff;
    border:1px solid #e8eff5;
    border-radius:28px;
    padding:40px;
    box-shadow:0 8px 30px rgba(0,0,0,.04);
}

.side-card-title{
    font-size:30px;
    font-weight:700;
    color:#111827;
    margin-bottom:30px;
}

.fb-reaction-counts{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.fb-reaction-counts span{
    background:#f3f8fc;
    color:#6b7280;
    padding:12px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

.fb-reaction-counts strong{
    color:#111827;
}

.fb-reaction-actions{
    display:flex;
    gap:15px;
    margin-bottom:35px;
}

.fb-reaction-actions form{
    flex:1;
}

.fb-reaction-actions button{
    width:100%;
    border:none;
    background:#64748b;
    color:#fff;
    padding:14px;
    border-radius:16px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
}

.fb-reaction-actions button:hover{
    opacity:.9;
}

.comment-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:35px;
}

.comment-item{
    background:#f8fcff;
    border:1px solid #e7f1fb;
    border-radius:18px;
    padding:18px 20px;
}

.comment-item strong{
    display:block;
    font-size:15px;
    color:#111827;
    margin-bottom:8px;
}

.comment-item p{
    color:#4b5563;
    line-height:1.7;
    font-size:14px;
}

.comment-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.comment-form input,
.comment-form textarea{
    width:100%;
    border:1px solid #d6e5f3;
    border-radius:16px;
    padding:15px 18px;
    background:#fff;
    font-size:14px;
    outline:none;
    transition:.2s ease;
}

.comment-form textarea{
    min-height:140px;
    resize:vertical;
}

.comment-form input:focus,
.comment-form textarea:focus{
    border-color:#3a94ed;
}

.comment-form button{
    border:none;
    background:#111827;
    color:#fff;
    padding:14px 24px;
    border-radius:16px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    width:fit-content;
}

.comment-form button:hover{
    opacity:.9;
}

@media(max-width:768px){

    .fb-reaction-card{
        padding:28px 22px;
    }

    .fb-reaction-actions{
        flex-direction:column;
    }

}

.related-news-card .related-news-placeholder{
    width:130px;
    height:96px;
    min-width:130px;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;
    font-weight:800;

    color:#fff;

    background:#173B8F;

    flex-shrink:0;
}

@media(max-width:640px){
    .related-news-card .related-news-placeholder {
        width: 96px;
        height: 76px;
        min-width: 96px;
    }
}

/* =========================================
   DATA PRIVACY MODAL
========================================= */

.privacy-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw;
    height: 100vh;

    background: rgba(15, 23, 42, 0.65);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 999999 !important;
}

.privacy-modal-overlay.show {
    display: flex !important;
}

.privacy-modal {
    position: relative;

    width: 100%;
    max-width: 620px;
    max-height: 88vh;

    overflow-y: auto;

    background: white;

    border-radius: 20px;

    padding: 32px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.privacy-close-btn {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: #f1f5f9;

    font-size: 22px;

    cursor: pointer;
}

.privacy-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 60px;
    height: 60px;

    margin: 0 auto 15px;

    border-radius: 15px;

    background: #eef2f7;
}

.privacy-modal h2 {
    text-align: center;

    margin: 0 0 8px;

    color: #0f172a;
}

.privacy-description {
    text-align: center;

    color: #64748b;

    margin-bottom: 22px;
}

.privacy-notice-content {
    max-height: 280px;

    overflow-y: auto;

    margin-bottom: 20px;
}

.privacy-section {
    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    padding: 16px;

    margin-bottom: 12px;
}

.privacy-section-title {
    display: flex;
    align-items: center;

    gap: 8px;
}

.privacy-section-title h3 {
    margin: 0;
}

.privacy-consent-box {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding: 15px;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    background: #f8fafc;

    cursor: pointer;
}

.privacy-consent-box input {
    width: 18px;
    height: 18px;

    margin-top: 2px;
}

.privacy-modal-actions {
    display: flex;
    justify-content: flex-end;

    gap: 10px;

    margin-top: 20px;
}

.privacy-modal-actions button {
    padding: 12px 18px;

    border: none;
    border-radius: 10px;

    font-weight: 600;

    cursor: pointer;
}

.privacy-cancel-btn {
    background: #e2e8f0;
    color: #334155;
}

.privacy-agree-btn {
    background: #0f172a;
    color: white;
}

.privacy-agree-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}


/* =========================================
   REACTION ACTIVE STATE
========================================= */

.fb-reaction-actions .reaction-button {
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}


/* SELECTED */

.fb-reaction-actions .reaction-button.active {
    background: #0f172a;
    color: #ffffff;
}


/* CLICK EFFECT */

.fb-reaction-actions .reaction-button:active {
    transform: scale(0.98);
}


/* WHILE SAVING */

.fb-reaction-actions .reaction-button:disabled {
    cursor: wait;
    opacity: 0.7;
}
.news-videos-gallery {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-video-item {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.news-gallery-video {
    display: block;
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    background: #000;
}
/* =========================================
   SOURCE / REFERENCE SECTION
========================================= */

.source-reference {
    margin-top: 28px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #d8e5f2;
    border-radius: 12px;
    max-width: 850px;
}

.source-reference-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #2a5886;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.source-reference-title {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #172c40;
}

.source-reference-description {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.6;
    color: #626e7a;
}

.source-reference-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #2a5886;
    text-decoration: none;
}

.source-reference-link:hover {
    text-decoration: underline;
}
