/* ==========================================================================
   Grid de Creaciones (2 columnas escritorio / 1 móvil)
   ========================================================================== */
.abc-grid-creaciones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Tarjeta Individual (Altura fija 400px) */
.abc-card-creacion {
    height: 400px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(59, 184, 219, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.abc-card-creacion:hover {
    transform: translateY(-5px);
    border-color: #3bb8db;
}

/* ==========================================================================
   Área Multimedia
   ========================================================================== */
.abc-creacion-media {
    height: 180px;
    background: #f0f4f7;
    position: relative;
    overflow: hidden;
}

.abc-creacion-media img, 
.abc-creacion-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abc-media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #cbd5e0;
}

.abc-media-placeholder .dashicons { 
    font-size: 50px; 
    width: 50px; 
    height: 50px; 
}

.abc-badge-tipo {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3bb8db;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* ==========================================================================
   Cuerpo de la Tarjeta
   ========================================================================== */
.abc-creacion-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.abc-creacion-cat {
    font-size: 11px;
    color: #3bb8db;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.abc-creacion-cat .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #888;
}

.abc-creacion-texto {
    font-size: 18px;
    font-weight: 600;
    color: #005f73;
    line-height: 1.4;
    margin: 0 0 15px 0;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Meta datos y Valor Bursátil */
.abc-creacion-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Divide el meta en 3 columnas idénticas */
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.abc-meta-item.text-center {
    text-align: center;
}

/* Estilo simétrico para el badge de respuestas */
.abc-status-pill.status-respuestas {
    background: rgba(0, 188, 212, 0.12); /* Tono cyan sutil a juego con el Valor Bursátil */
    color: #00bcd4;
    border: 1px solid rgba(0, 188, 212, 0.2);
    font-size: 16px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 4px;
}

.abc-meta-item .label {
    display: block;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.abc-meta-item .value { 
    font-weight: 700; 
    font-size: 15px; 
}

.cian-text { color: #3bb8db; }

/* ==========================================================================
   Carga Infinita
   ========================================================================== */
.abc-loader-spinner {
    color: #3bb8db;
    font-weight: 600;
    font-size: 14px;
    padding: 20px;
}

.abc-loader-spinner .dashicons {
    animation: spin 1s infinite linear;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Responsive y Estados Vacíos
   ========================================================================== */
.abc-no-creaciones {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: #f9fafb;
    border-radius: 15px;
    border: 2px dashed #e2e8f0;
    color: #718096;
}

@media (max-width: 800px) {
    .abc-grid-creaciones { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
}