/* Blog Section Styles */
.v-blog-section {
    padding: 80px 20px;
    background-color: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.v-blog-section .v-container {
    max-width: 1200px;
    margin: 0 auto;
}

.v-blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.v-blog-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.v-blog-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.v-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Styling */
.v-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.v-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.v-blog-card-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.v-blog-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

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

.v-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b90e38;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.v-blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.v-blog-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.v-blog-card-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.v-blog-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.v-blog-card-title a:hover {
    color: #b90e38;
}

.v-blog-card-excerpt {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.v-blog-card-footer {
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.v-blog-read-more {
    color: #b90e38;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.v-blog-read-more:hover {
    color: #9a0c2f;
}

/* Action Button */
.v-blog-action {
    text-align: center;
    margin-top: 20px;
}

.v-blog-btn {
    display: inline-block !important;
    width: auto !important;
    background-color: #b90e38 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 40px !important;
    border: none;
    border-radius: 30px !important; /* Beautiful rounded pill shape */
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(185, 14, 56, 0.3);
}

.v-blog-btn:hover {
    background-color: #9a0c2f !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 14, 56, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .v-blog-section {
        padding: 50px 15px;
    }
    .v-blog-title {
        font-size: 28px;
    }
    .v-blog-subtitle {
        font-size: 16px;
    }
    .v-blog-grid {
        grid-template-columns: 1fr;
    }
}
