/* ===== Blog Section Redesign ===== */

.dsp-blog-section {
    padding: 55px 0 65px;
    background: #f7f9fc;
}

.dsp-section-header {
    margin-bottom: 35px;
}

.dsp-section-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a017;
    margin-bottom: 10px;
}

.dsp-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #0a1f3d;
    margin: 0 0 14px;
    line-height: 1.2;
}

.dsp-section-title span {
    color: #0a1f3d;
}

.dsp-section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a017, #e8c056);
    margin: 0 auto;
    border-radius: 2px;
}

/* Blog cards */
.dsp-blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 31, 61, 0.06);
    border: 1px solid rgba(10, 31, 61, 0.06);
    margin-bottom: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dsp-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(10, 31, 61, 0.12);
}

.dsp-blog-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eef1f5;
}

.dsp-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dsp-blog-card:hover .dsp-blog-card-image img {
    transform: scale(1.05);
}

.dsp-blog-card-body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dsp-blog-card-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #d4a017;
    margin-bottom: 10px;
}

.dsp-blog-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dsp-blog-card-body h3 a {
    color: #0a1f3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dsp-blog-card-body h3 a:hover {
    color: #d4a017;
}

.dsp-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0a1f3d;
    text-decoration: none;
    padding-top: 12px;
    border-top: 1px solid #eef1f5;
    transition: color 0.3s ease, gap 0.3s ease;
}

.dsp-blog-read-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.dsp-blog-read-more:hover {
    color: #d4a017;
    text-decoration: none;
}

.dsp-blog-read-more:hover i {
    transform: translateX(4px);
}

.dsp-blog-view-all {
    text-align: center;
    margin-top: 15px;
}

.dsp-blog-view-all a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: #0a1f3d;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dsp-blog-view-all a:hover {
    background: #061428;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .dsp-blog-section {
        padding: 50px 0 60px;
    }

    .dsp-section-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .dsp-section-title {
        font-size: 24px;
    }

    .dsp-blog-card-body {
        padding: 16px 18px 20px;
    }
}
