/* ============================================================
   Block: Commercial Links  —  prefix: cl-
   Lista de backlinks a páginas comerciales, estilo
   "Top Areas & Neighborhoods".
   ============================================================ */

.cl-section {
    padding: 0;
}

.cl-container {
    width: 80%;
    margin: 0 auto;
    padding: 2.5rem 0;
}

@media (max-width: 768px) {
    .cl-container {
        width: 92%;
    }
}

.cl-heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

/* Lista multi-columna */
.cl-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(var(--cl-cols, 2), 1fr);
    column-gap: 3rem;
}

.cl-list--cols-1 { --cl-cols: 1; }
.cl-list--cols-2 { --cl-cols: 2; }
.cl-list--cols-3 { --cl-cols: 3; }
.cl-list--cols-4 { --cl-cols: 4; }

/* Cada fila */
.cl-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.cl-item:last-child {
    border-bottom: none;
}

/* Enlace */
.cl-link {
    color: #2e7d32;
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
    line-height: 1.4;
}
.cl-link:hover {
    color: #1b5e20;
    text-decoration: underline;
}

/* Items ocultos (antes de expandir) */
.cl-item--hidden {
    display: none;
}

/* Botón Ver más */
.cl-more-wrap {
    margin-top: 1.25rem;
    text-align: center;
}

.cl-more-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: none;
    border: 1.5px solid #2e7d32;
    color: #2e7d32;
    font-size: .9rem;
    font-weight: 600;
    padding: .5rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.cl-more-btn:hover,
.cl-more-btn--open {
    background: #2e7d32;
    color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
    .cl-list {
        --cl-cols: 1 !important;
    }
}
