﻿.dcm-footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 4px;
}

.dcm-footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .dcm-footer-col a {
        font-size: 12px;
        color: var(--dcm-muted);
        text-decoration: none;
    }

        .dcm-footer-col a:hover {
            color: var(--dcm-green);
        }

@media (max-width: 768px) {
    .dcm-footer-links {
        gap: 24px;
    }
}

/* Bottom sheet - dung chung toan site (tin tuc/chinh sach, va cac noi dung khac sau nay) */
.dcm-bottomsheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43,38,32,0);
    pointer-events: none;
    transition: background 0.25s ease;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .dcm-bottomsheet-overlay.dcm-open {
        background: rgba(43,38,32,0.5);
        pointer-events: auto;
    }

.dcm-bottomsheet {
    background: var(--dcm-cream);
    width: 100%;
    max-width: 600px;
    max-height: 82vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 14px 20px calc(20px + env(safe-area-inset-bottom));
    box-sizing: border-box;
}

.dcm-bottomsheet-overlay.dcm-open .dcm-bottomsheet {
    transform: translateY(0);
}

.dcm-bottomsheet-handle {
    width: 36px;
    height: 4px;
    background: var(--dcm-border);
    border-radius: 2px;
    margin: 0 auto 12px;
}

.dcm-bottomsheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

    .dcm-bottomsheet-header h2 {
        font-size: 17px;
    }

.dcm-bottomsheet-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dcm-muted);
    font-size: 22px;
    line-height: 1;
}
