/* Cookie consent — matches news_tgn_0005 (paper cream + dark red / gold) */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    background: rgba(253, 252, 248, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--ink, #121212);
    border-top: 1px solid var(--border, #e0e0e0);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.06);
    font-family: var(--font-sans, 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
    animation: n5-cookie-slide-up 0.35s ease-out;
}

@keyframes n5-cookie-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-banner.show { display: block; }

.cookie-consent-content {
    max-width: var(--container, 1008px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
}

.cookie-consent-text {
    flex: 1;
    min-width: min(100%, 280px);
}

.cookie-consent-text > div:first-child {
    margin-bottom: 8px;
    font-family: var(--font-serif, Georgia, 'Times New Roman', serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand, #8b0000);
}

.cookie-consent-text p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-muted, #555555);
}

.cookie-consent-text a {
    color: var(--brand, #8b0000);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(139, 0, 0, 0.45);
    text-underline-offset: 3px;
}

.cookie-consent-text a:hover {
    color: var(--brand, #8b0000);
    text-decoration-color: rgba(139, 0, 0, 0.85);
}

.cookie-consent-buttons {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: var(--radius-sm, 8px);
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 650;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-btn-accept {
    background: var(--brand, #8b0000);
    color: #fdfcf8;
    border-color: var(--brand, #8b0000);
}

.cookie-btn-accept:hover {
    background: #6e0000;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: var(--bg-muted, #f5f5f0);
    color: var(--ink, #121212);
    border-color: var(--border, #e0e0e0);
}

.cookie-btn-reject:hover {
    border-color: #c9c9c0;
}

.cookie-btn-settings {
    background: transparent;
    color: var(--brand, #8b0000);
    border-color: rgba(139, 0, 0, 0.35);
}

.cookie-btn-settings:hover {
    background: rgba(139, 0, 0, 0.06);
    border-color: var(--brand, #8b0000);
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(18, 18, 18, 0.45);
}

.cookie-settings-modal.show { display: flex; }

.cookie-settings-content {
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 24px;
    border-radius: var(--radius, 12px);
    background: var(--bg, #fdfcf8);
    color: var(--ink, #121212);
    border: 1px solid var(--border, #e0e0e0);
    box-shadow: var(--shadow, 0 1px 3px rgba(0, 0, 0, 0.05)), 0 16px 40px rgba(0, 0, 0, 0.12);
    animation: n5-cookie-modal-in 0.25s ease-out;
}

@keyframes n5-cookie-modal-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border, #e0e0e0);
}

.cookie-settings-header > div {
    font-family: var(--font-serif, Georgia, 'Times New Roman', serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand, #8b0000);
}

.cookie-settings-close {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--border, #e0e0e0);
    border-radius: var(--radius-sm, 8px);
    background: var(--bg-muted, #f5f5f0);
    font-size: 1.35rem;
    line-height: 1;
    color: var(--ink-muted, #555555);
    cursor: pointer;
}

.cookie-settings-close:hover {
    color: var(--brand, #8b0000);
    border-color: var(--brand-2, #c9a227);
}

.cookie-setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border, #e0e0e0);
}

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

.cookie-setting-info > div {
    margin-bottom: 4px;
    font-size: 0.95rem;
    font-weight: 650;
}

.cookie-setting-info p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--ink-muted, #555555);
}

.cookie-toggle {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border-radius: 999px;
    background: #d4d4cc;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    border-radius: 50%;
    background: #fdfcf8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--brand, #8b0000);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle.disabled { opacity: 0.5; cursor: not-allowed; }
.cookie-toggle.disabled input { cursor: not-allowed; }

.cookie-settings-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border, #e0e0e0);
}

@media (max-width: 768px) {
    .cookie-consent-content { flex-direction: column; text-align: center; }
    .cookie-consent-buttons { width: 100%; justify-content: center; }
    .cookie-btn { flex: 1; min-width: 0; }
    .cookie-setting-item { flex-direction: column; align-items: flex-start; }
    .cookie-toggle { align-self: flex-end; }
    .cookie-settings-footer { flex-direction: column; }
    .cookie-settings-footer .cookie-btn { width: 100%; }
}
