/* Blog Card Container */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1) !important;
}

/* Image Styling */
.blog-img-wrapper {
    overflow: hidden;
    /* height: 200px; Fixed height for uniformity */
}

.blog-img-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: scale 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    scale: 1.1;
}

/* Typography */
.blog-title {
    font-family: 'Livvic', sans-serif;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limits title to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-date {
    font-size: 13px;
    color: #ab2c48; /* Your brand red */
    font-weight: 600;
}

.read-more {
    font-size: 14px;
    font-weight: 700;
    color: #ab2c48;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card:hover .blog-title {
    color: #e31e24;
}

.blog-main-title {
    font-family: 'Livvic', sans-serif;
    color: #F5E027 !important; /* Your signature yellow */
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* Clean, high-contrast shadow for readability */
    text-shadow: 3px 3px 0px #E31E24; 
    font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
    margin-bottom: 10px;
}

.title-underline {
    width: 100px;
    height: 6px;
    background: #E31E24;
    margin: 0 auto;
    border-radius: 50px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background: #0d6efd; /* Your blue as an accent */
    right: -50px;
    border-radius: 50px;
}

.title-underline::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background: #0d6efd;
    left: -50px;
    border-radius: 50px;
}