/* ============================================================
   SONDAX TRAVEL - Blog Page Styles
   ============================================================ */

/* ---- FEATURED POST ---- */
.st-blog-featured { text-decoration: none; color: inherit; }
.st-blog-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.st-blog-featured-img {
    overflow: hidden;
    min-height: 300px;
}
.st-blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.st-blog-featured:hover .st-blog-featured-img img {
    transform: scale(1.05);
}
.st-blog-featured-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.st-blog-featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.st-blog-featured-desc {
    font-size: 0.9375rem;
    color: var(--color-muted);
    margin-bottom: 16px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.st-blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--color-muted);
}
.st-blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.st-blog-meta-item svg {
    flex-shrink: 0;
}

/* ---- IMAGE HOVER ZOOM ---- */
.st-img-zoom { overflow: hidden; }
.st-img-zoom img {
    transition: transform 0.5s ease;
}
.st-card:hover .st-img-zoom img {
    transform: scale(1.08);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .st-blog-featured-grid {
        grid-template-columns: 1fr;
    }
    .st-blog-featured-img {
        min-height: 200px;
        max-height: 240px;
    }
    .st-blog-featured-body {
        padding: 20px;
    }
    .st-blog-featured-title {
        font-size: 1.25rem;
    }
}
