/* ==========================
Newsletter Section
========================== */

.newsletter-section {
max-width: 1200px;
margin: 50px auto;
padding: 20px;
}

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

.section-header h2 {
color: #0056b3;
font-size: 36px;
margin-bottom: 12px;
font-weight: 700;
}

.section-header p {
max-width: 850px;
margin: auto;
color: #555;
line-height: 1.8;
font-size: 16px;
}

/* ==========================
Newsletter Grid
========================== */

.newsletter-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

/* ==========================
Newsletter Card
========================== */

.newsletter-card {
background: #fff;
border-radius: 15px;
overflow: hidden;
text-align: center;
border-top: 5px solid #0056b3;
box-shadow: 0 5px 18px rgba(0,0,0,0.08);
transition: all 0.35s ease;
padding: 20px;
}

.newsletter-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0,86,179,0.20);
}

/* ==========================
Newsletter Cover Image
========================== */

.newsletter-thumb {
width: 100%;
height: 400px;
overflow: hidden;
border-radius: 12px;
margin-bottom: 20px;
background: #ffffff;
border: 1px solid #e5e5e5;
box-shadow: 0 4px 12px rgba(0,0,0,.08);


display: flex;
align-items: center;
justify-content: center;


}

.newsletter-thumb img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
padding: 5px;
transition: 0.4s ease;
}

.newsletter-card:hover .newsletter-thumb img {
transform: scale(1.03);
}

/* ==========================
Newsletter Content
========================== */

.newsletter-card h3 {
color: #0056b3;
font-size: 20px;
margin-bottom: 10px;
line-height: 1.4;
min-height: 55px;
}

.newsletter-card p {
color: #666;
margin-bottom: 25px;
font-size: 15px;
}

/* ==========================
Download Button
========================== */

.download-btn {
display: inline-block;
padding: 12px 24px;
background: linear-gradient(135deg, #0056b3, #0077e6);
color: #fff;
text-decoration: none;
border-radius: 30px;
font-weight: 600;
transition: all 0.3s ease;
}

.download-btn:hover {
background: linear-gradient(135deg, #003f88, #0056b3);
transform: scale(1.05);
}

/* ==========================
Tablet
========================== */

@media (max-width: 1024px) {


.newsletter-thumb {
    height: 350px;
}


}

/* ==========================
Mobile
========================== */

@media (max-width: 768px) {


.newsletter-section {
    padding: 15px;
}

.section-header {
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 28px;
}

.section-header p {
    font-size: 15px;
}

.newsletter-grid {
    gap: 20px;
}

.newsletter-card {
    padding: 15px;
}

.newsletter-thumb {
    height: 320px;
}

.newsletter-card h3 {
    font-size: 18px;
    min-height: auto;
}


}

/* ==========================
Small Mobile
========================== */

@media (max-width: 480px) {


.newsletter-thumb {
    height: 280px;
}

.download-btn {
    width: 100%;
    text-align: center;
}


}
