/* =============================================
   CATEGORY & BLOG PAGES - VipTime Design
   ============================================= */

/* Hero Section */
.vt-page-hero {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    padding: 4rem 0 3rem;
    position: relative;
}

.vt-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: .85rem;
}

.vt-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .2s;
}

.vt-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.vt-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, .6);
}

.vt-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

.vt-page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0 .5rem;
    line-height: 1.2;
}

.vt-page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

/* Blog Cards */
.vt-blog-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.vt-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    border: 1px solid #e2e8f0;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vt-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.vt-blog-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
}

.vt-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.vt-blog-card:hover .vt-blog-img img {
    transform: scale(1.08);
}

.vt-blog-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vt-blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: .75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vt-blog-excerpt {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vt-blog-link {
    display: inline-flex;
    align-items: center;
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary, #0891b2);
    margin-top: auto;
}

.vt-blog-link i {
    transition: transform .2s;
}

.vt-blog-card:hover .vt-blog-link i {
    transform: translateX(3px);
}

/* Empty State */
.vt-empty-state {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    border: 1px solid #e2e8f0;
}

.vt-empty-state p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .vt-page-hero-title {
        font-size: 2rem;
    }

    .vt-blog-body {
        padding: 1.25rem;
    }

    .vt-blog-title {
        font-size: 1rem;
    }

    .vt-blog-excerpt {
        font-size: .85rem;
    }
}
