@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

/* ===== CSS Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem 3rem;
    margin: 0;
    position: relative;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* ===== Login Layout ===== */
.login-layout {
    display: flex;
    gap: 48px;
    width: 100%;
    max-width: 1440px;
    align-items: stretch;
    margin: auto;
}

/* ===== Visual/News Section (Left) ===== */
.login-visual {
    flex: 2;
    max-height: 750px;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 0;
}

.login-visual-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.login-visual-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* ===== News Module ===== */
.news-module {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    max-height: 540px;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-height: 0;
    max-height: 680px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.1) transparent;
}

.news-grid::-webkit-scrollbar {
    width: 8px;
}

.news-grid::-webkit-scrollbar-track {
    background: transparent;
}

.news-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
    transition: all 0.2s;
}

.news-grid:hover::-webkit-scrollbar-thumb {
    background-color: rgba(162, 29, 33, 0.4);
}

/* ===== News Card ===== */
.news-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.2s ease;
    border: none;
    border-bottom: 1px solid #f1f5f9;
}

.news-card:hover {
    background: #f8fafc;
}

.news-card:hover .news-hero-img {
    transform: scale(1.1);
}

.news-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #1e293b;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.news-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #fff0f0;
    color: #c41e3a;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    width: fit-content;
}

.news-tag.soft {
    background: #f0f7ff;
    color: #2563eb;
}

.news-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #999;
}

/* ===== Login Panel (Right) ===== */
.login-panel {
    flex: 0.85;
    max-width: 380px;
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    max-height: 750px;
    overflow-y: auto;
}

.brand-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.brand-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

/* ===== Form Elements ===== */
.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Kanit', sans-serif;
    background: #f8fafc;
    transition: all 0.2s ease;
    color: #1e293b;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:hover {
    border-color: #cbd5e1;
}

.form-control:focus {
    outline: none;
    border-color: #A21D21;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(162, 29, 33, 0.1);
}

/* Remember me */
.remember {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.remember input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #A21D21;
    cursor: pointer;
}

.remember label {
    cursor: pointer;
}

/* ===== Buttons ===== */
.button-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Kanit', sans-serif;
    text-align: center;
}

.btn-primary {
    background: #A21D21;
    color: white;
}

.btn-primary:hover {
    background: #8e191d;
}

.btn-outline {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-outline:hover {
    border-color: #A21D21;
    color: #A21D21;
}

.btn-ms {
    background: #fff;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #e5e5e5;
    width: 100%;
    padding: 14px 24px;
    font-weight: 500;
}

.btn-ms:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.btn-ms img {
    width: 20px;
    height: 20px;
}

/* Forgot password link */
.forgot {
    font-size: 0.9rem;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: center;
    width: 100%;
    display: block;
}

.forgot:hover {
    color: #A21D21;
}

/* ===== Button Icons (News cards) ===== */
.btn-icon {
    border: none;
    background: transparent;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: #A21D21;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
}

.btn-icon:hover {
    background: #fff0f0;
}

/* ===== Modals ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header i {
    color: #A21D21;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 24px;
}

/* ===== News Detail Modal ===== */
.news-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 12px;
}

.news-detail-modal.show {
    display: flex;
    animation: fadeIn 0.2s ease;
}

.news-detail-box {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1400px;
    height: 90vh;
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-detail-box::-webkit-scrollbar {
    display: none;
}

.news-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
    margin-bottom: 8px;
}

.news-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.news-detail-summary {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

.news-detail-body {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    white-space: pre-wrap;
}

/* Gallery */
.news-body-gallery {
    position: relative;
    margin-top: 8px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.92));
    min-height: 520px;
}

.gallery-track {
    position: relative;
    min-height: 520px;
}

.gallery-slide {
    display: none;
    width: 100%;
    min-height: 520px;
    background: transparent center/contain no-repeat;
}

.gallery-slide.active {
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(16, 24, 40, .56);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
}

.gallery-nav.prev { left: 14px; }
.gallery-nav.next { right: 14px; }
.gallery-nav:hover { background: rgba(16, 24, 40, .78); }

.gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    padding: 0;
}

.dot.active {
    background: #fff;
    transform: scale(1.1);
}

.gallery-expand {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(16, 24, 40, .56);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    display: grid;
    place-items: center;
}

.gallery-expand:hover { background: rgba(16, 24, 40, .78); }

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 10010;
    display: none;
    padding: 24px;
}

.gallery-modal.show { display: block; }

.gallery-modal-shell {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    padding: 88px 88px 72px;
}

.gallery-slide.file-slide {
    display: none;
    background: #f8fafc;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.gallery-slide.file-slide.active { display: flex; }
.gallery-modal-slide.file-slide-modal {
    display: none;
    background: #f8fafc;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.gallery-modal-slide.file-slide-modal.active { display: flex; }

.gallery-modal-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-modal-slide {
    display: none;
    width: 100%;
    height: 100%;
    background: transparent center/contain no-repeat;
}

.gallery-modal-slide.active { display: block; }

.gallery-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: rgba(16, 24, 40, .56);
    color: #fff;
    cursor: pointer;
    z-index: 3;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .16);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
}

.gallery-modal-close:hover { background: rgba(16, 24, 40, .78); }

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 999px;
    background: rgba(16, 24, 40, .56);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
}

.gallery-modal-nav.prev { left: 18px; }
.gallery-modal-nav.next { right: 18px; }
.gallery-modal-nav:hover { background: rgba(16, 24, 40, .78); }

.gallery-modal-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.gallery-modal-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    padding: 0;
}

.gallery-modal-dot.active {
    background: #fff;
    transform: scale(1.1);
}

/* Attachments */
.news-detail-attachments {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.att-section {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

.att-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.att-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #9ca3af;
    cursor: pointer;
    z-index: 10;
}

.password-toggle:hover {
    color: #4b5563;
}

/* Login top bar: manual + language switcher */
.login-top-bar {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    z-index: 9999;
    max-width: calc(100% - 48px);
}

/* Manual Button */
.login-manual-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 99px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    color: #A21D21;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.login-manual-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

/* Language Switcher */
.login-lang-switcher {
    display: flex;
    padding: 4px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 99px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    gap: 2px;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    white-space: nowrap;
}

.lang-btn:hover {
    color: #1e293b;
    background: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
    background: #A21D21;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(162, 29, 33, 0.3);
    font-weight: 600;
}

/* PWA Install Card: Hide on Desktop PC, Show only on Mobile */
.mobile-only-pwa {
    display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .mobile-only-pwa {
        display: flex !important;
    }

    body {
        padding: 1rem 1rem 2rem;
    }

    .login-top-bar {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 440px;
        margin: 0 auto 16px auto;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .login-layout {
        flex-direction: column-reverse;
        gap: 24px;
        max-width: 440px;
        max-height: none;
        margin-top: 0;
    }
    .login-visual { width: 100%; }
    .login-panel {
        width: 100%;
        min-width: unset;
        max-height: none;
        overflow: visible;
        justify-content: center;
        padding: 32px 24px;
    }
    .news-grid { max-height: 320px; }
}

@media (max-width: 640px) {
    body {
        padding: 0.75rem 0.75rem 2rem;
    }

    .login-top-bar {
        gap: 8px;
        margin-bottom: 12px;
    }

    .login-manual-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .login-layout {
        margin-left: auto;
        margin-right: auto;
    }

    .news-card {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    .news-card .news-hero-container,
    .news-card .news-hero-img {
        width: 100% !important;
        align-self: stretch !important;
    }
    .news-card h4 {
        font-size: 0.95rem;
    }
    .news-card p {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .news-body-gallery,
    .gallery-track,
    .gallery-slide {
        min-height: 360px;
    }
    .gallery-modal { padding: 8px; }
    .gallery-modal-shell { border-radius: 14px; padding: 52px 8px 48px; }
    .gallery-modal-slide { background-size: contain; background-position: center; }
    .gallery-modal-nav { width: 40px; height: 40px; }
    .gallery-modal-close { width: 40px; height: 40px; border-radius: 12px; font-size: 18px; top: 8px; right: 8px; }
    .gallery-modal-nav.prev { left: 4px; }
    .gallery-modal-nav.next { right: 4px; }
}

@media (max-width: 480px) {
    body { padding: 1rem; }
    .login-panel { padding: 32px 24px; }
    .login-visual { padding: 20px; }
    .form-control { font-size: 16px; }
}

@keyframes spin { to { transform: rotate(360deg); } }
.ri-spin { animation: spin 1s linear infinite; }

/* News Primary CTA & Attachment Cards */
.news-detail-primary-link-wrap {
    margin-top: 12px;
    margin-bottom: 8px;
}
.news-primary-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #a21d21 0%, #7d161a 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(162, 29, 33, 0.28);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.news-primary-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.news-primary-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(162, 29, 33, 0.4);
    color: #ffffff !important;
}
.primary-cta-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
}
.primary-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
}
.primary-cta-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}
.primary-cta-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px;
}
.primary-cta-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 1;
}
.news-primary-cta-btn:hover .primary-cta-action {
    background: rgba(255, 255, 255, 0.28);
}
.news-primary-cta-btn:hover .primary-cta-action i {
    transform: translate(2px, -2px);
}

.news-detail-attachments .attachment-section {
    margin-top: 12px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}
.news-detail-attachments .attachment-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-detail-attachments .attachment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.news-detail-attachments .att-chip-item {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 6px 12px;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.news-detail-attachments .att-chip-item:hover {
    border-color: #94a3b8;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.news-detail-attachments .att-chip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.news-detail-attachments .att-chip-link:hover {
    color: #a21d21;
}
