/* Container & Filter bar */
.vik-blog-container-7e05066e {
    width: 100%;
    margin: 0 auto;
}

.vik-blog-filters-7e05066e {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.vik-blog-filter-btn-7e05066e {
    padding: 10px 24px;
    border: 1px solid #e5e5ea;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Featured Card Layout */
.vik-blog-card-7e05066e.featured {
    width: 100%;
    margin-bottom: 40px;
}

.vik-blog-card-7e05066e.featured .vik-blog-card-link-7e05066e {
    display: flex;
    flex-direction: row;
    gap: 32px;
    background: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vik-blog-card-7e05066e.featured .vik-blog-card-img-7e05066e {
    flex: 1.2;
    height: 420px;
    background-size: cover;
    background-position: center;
}

.vik-blog-card-7e05066e.featured .vik-blog-card-content-7e05066e {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

/* Standard Grid Layout */
.vik-blog-grid-7e05066e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vik-blog-card-7e05066e:not(.featured) .vik-blog-card-link-7e05066e {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vik-blog-card-7e05066e:not(.featured) .vik-blog-card-img-7e05066e {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.vik-blog-card-7e05066e:not(.featured) .vik-blog-card-content-7e05066e {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card Hover effect */
.vik-blog-card-link-7e05066e:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Typography & Meta elements */
.vik-blog-card-meta-7e05066e {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 500;
}

.vik-blog-card-tag-7e05066e {
    color: #ed4f00;
    text-transform: uppercase;
}

.vik-blog-card-date-7e05066e {
    color: #8e8e93;
}

.vik-blog-card-title-7e05066e {
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.vik-blog-card-excerpt-7e05066e {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #636366;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.vik-blog-readmore-7e05066e {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-top: auto;
    transition: color 0.2s ease;
}

.vik-blog-card-link-7e05066e:hover .vik-blog-readmore-7e05066e {
    color: #ed4f00;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
    .vik-blog-grid-7e05066e {
        grid-template-columns: repeat(2, 1fr);
    }
    .vik-blog-card-7e05066e.featured .vik-blog-card-link-7e05066e {
        flex-direction: column;
    }
    .vik-blog-card-7e05066e.featured .vik-blog-card-img-7e05066e {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .vik-blog-grid-7e05066e {
        grid-template-columns: 1fr;
    }
}
