/* ============================================
   Pagina Blog Hub — Blog Landing Styles
   ============================================ */

.page-blog-hub {
    padding-top: 100px;
}
.blog-hub {
    padding: 40px 0 80px;
}
.blog-hub__grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 700px;
}
.blog-hub__left {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.blog-hub__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-decoration: none;
    color: var(--color-white);
    transition: background 0.3s ease;
    flex: 1;
}
.blog-hub__card:hover {
    background: rgba(255, 255, 255, 0.03);
}
.blog-hub__left .blog-hub__card:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.blog-hub__card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-align: center;
}
.blog-hub__card-img {
    overflow: hidden;
    border-radius: 50%;
    width: 250px;
    height: 250px;
}
.blog-hub__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-hub__card:hover .blog-hub__card-img img {
    transform: scale(1.05);
}
.blog-hub__card-img--full {
    width: 300px;
    height: 300px;
}

@media (min-width: 768px) {
    .blog-hub__grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog-hub__left {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
    .blog-hub__right {
        justify-content: center;
    }
    .blog-hub__card-img {
        width: 315px;
        height: 315px;
    }
    .blog-hub__card-img--full {
        width: 400px;
        height: 400px;
    }
}
