/* ============================================
   BV Coverage Categories Widget
   Version: 1.0.0
   ============================================ */

/* ── Wrapper ── */
.bv-cc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    width: 100%;
}

/* ── Grid ── */
.bv-cc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 16px;
    row-gap: 16px;
    width: 100%;
}

/* ── Button ── */
.bv-cc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background-color: #ede5d8;
    color: #1a3a4a;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 300ms ease;
    min-height: 0;
    word-break: break-word;
    hyphens: auto;
}

a.bv-cc-btn {
    text-decoration: none;
}

.bv-cc-btn:hover,
.bv-cc-btn:focus {
    background-color: #d9cebb;
    color: #1a3a4a;
    text-decoration: none;
}

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
    .bv-cc-wrapper {
        padding: 20px;
    }

    .bv-cc-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 14px;
        row-gap: 14px;
    }

    .bv-cc-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {
    .bv-cc-wrapper {
        padding: 16px;
    }

    .bv-cc-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 12px;
        row-gap: 12px;
    }

    .bv-cc-btn {
        padding: 12px 14px;
        font-size: 0.875rem;
        border-radius: 6px;
    }
}

/* ── Small Mobile (max 480px) ── */
@media (max-width: 480px) {
    .bv-cc-wrapper {
        padding: 12px;
    }

    .bv-cc-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        row-gap: 10px;
    }

    .bv-cc-btn {
        padding: 10px 12px;
        font-size: 0.825rem;
    }
}
