/* =========================================
   ESTILOS DE TARJETAS DE BLOG - ABCHESS CENTER
   ========================================= */

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(53, 224, 247, 0.3);
    box-shadow: 0 10px 30px rgba(53, 224, 247, 0.1);
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(0,0,0,0.4);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #35E0F7;
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .card-title {
    color: #35E0F7;
}

.card-summary {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: #35E0F7;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    gap: 5px;
    transition: gap 0.3s;
    margin-top: auto;
}

.card-link:hover {
    gap: 8px;
    text-shadow: 0 0 10px rgba(53, 224, 247, 0.5);
}

/* =========================================
   CUADRÍCULA DE BLOG (COMPARTIDA)
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =========================================
   BOTÓN PARA VER MÁS ARTÍCULOS
   ========================================= */
.blog-more-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

.btn-more-articles {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(53, 224, 247, 0.15), rgba(53, 224, 247, 0.05));
    border: 2px solid #35E0F7;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
                inset 0 0 10px rgba(53, 224, 247, 0.1);
}

.btn-more-articles:hover {
    background: #35E0F7;
    color: #0a0f1e;
    box-shadow: 0 0 25px rgba(53, 224, 247, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.03);
}

.btn-more-articles span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-more-articles:hover span {
    transform: translateX(5px);
}


