.newsletter-section {
    overflow: hidden;
}

/* Heading */
.newsletter-section h2 {
    font-size: 40px;
    color: blue !important;
}

/* Title */
.line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
}

.section-head p {
    color: #666;
    font-size: 16px;
}

/* Card */
.newsletter-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    height: 100%;
    border: 1px solid black;
}

.newsletter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* Image */
.newsletter-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.newsletter-body {
    padding: 20px;
    text-align: center;
}

.newsletter-body h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.newsletter-body .date {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Button */
.btn-view {
    display: inline-block;
    padding: 10px 20px;
    background: #1b4da0;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-view:hover {
    background: #143c80;
    color: #fff;
}
