.blog-section {
    background: #f8f9fc;
    padding: 80px 0;
}

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

.blog-section-header .blog-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8b84b;
    margin-bottom: 10px;
}

.blog-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
    line-height: 1.2;
}

.blog-section-header h2 span {
    color: #e8b84b;
}

.blog-section-header .blog-divider {
    width: 50px;
    height: 3px;
    background: #e8b84b;
    margin: 16px auto 0;
    border-radius: 2px;
}

.blog-see-more {
    display: block;
    text-align: right;
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #e8b84b;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.blog-see-more:hover {
    color: #c9952e;
    text-decoration: none;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.13);
}

.blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.06);
}

.blog-card-date-badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: #e8b84b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 24px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: #e8b84b;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.45;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: #e8b84b;
    text-decoration: none;
}

.blog-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #e8b84b;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s, color 0.2s;
}

.blog-card-link:hover {
    color: #c9952e;
    gap: 10px;
    text-decoration: none;
}
