/* Estilos generales para el cluster grid */
.ccp-cluster-grid {
    display: grid;
    gap: 20px;
    padding: 10px;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas en escritorio */
}

/* Estilos individuales de cada item */
.ccp-item {
    background: #ffffff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ajustar imÃ¡genes */
.ccp-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Meta bajo el t¨ªtulo (categor¨ªa + tipo de reportaje) */
.ccp-meta {
    margin-top: 6px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.2;
    color: #666;
}

.ccp-meta-sep {
    opacity: 0.6;
}

.ccp-report-type {
    font-weight: 600;
}

/* BotÃ³n */
.ccp-button {
    display: inline-block;
    background: #0073aa;
    color: #ffffff !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s;
}

.ccp-button:hover {
    background: #005a87;
    color: #ffffff !important;
}

/* ðŸŒ Modo responsive: en mÃ³viles los items aparecen en UNA SOLA COLUMNA */
@media screen and (max-width: 1024px) {
    .ccp-cluster-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Dos columnas en tablets */
    }
}

@media screen and (max-width: 768px) {
    .ccp-cluster-grid {
        grid-template-columns: 1fr !important; /* UNA SOLA COLUMNA en mÃ³viles */
    }

    .ccp-item {
        width: 100% !important;
    }

    .ccp-button {
        width: 100% !important;
    }
}

/* El enlace del lugar dentro del meta debe verse como texto normal */
.ccp-meta a,
.ccp-meta a:visited {
  color: inherit !important;
  text-decoration: none !important;
  font-weight: inherit !important;
}

.ccp-meta a:hover {
  text-decoration: underline !important; /* si no quieres ni hover, pon none */
}

.ccp-meta a.ccp-place-link,
.ccp-meta a.ccp-place-link:visited {
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(0,0,0,.03);
}

.ccp-meta a.ccp-place-link:hover {
  background: rgba(0,0,0,.06);
}

/* Base ¡°p¨ªldora¡± para Boda/Preboda/Postboda */
.ccp-meta .ccp-report-type{
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

/* Colores pastel seg¨²n tipo (por texto) */
.ccp-meta .ccp-report-type[data-type="boda"]{
  background: rgba(120, 190, 255, .18);
  border-color: rgba(120, 190, 255, .35);
}

.ccp-meta .ccp-report-type[data-type="preboda"]{
  background: rgba(255, 190, 120, .18);
  border-color: rgba(255, 190, 120, .35);
}

.ccp-meta .ccp-report-type[data-type="postboda"]{
  background: rgba(160, 220, 170, .22);
  border-color: rgba(160, 220, 170, .35);
}

/* Hover m¨¢s ¡°clickable¡± para el lugar (solo el enlace) */
.ccp-meta a.ccp-place-link:hover{
  transform: translateY(-1px);
  transition: transform .12s ease, background-color .12s ease;
}

/* Asegurar que ambas p¨ªldoras se ven alineadas y similares */
.ccp-meta a.ccp-place-link,
.ccp-meta .ccp-report-type{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
