.newsletter-section {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
}

h2 {
    font-size: 28px;
    color: #333;
}

.intro-text {
    font-size: 16px;
    margin-bottom: 20px;
}

h3, h4 {
    color: #555;
}

.book-container, .podcast-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.book-image {
    max-width: 100px;
    margin-right: 20px;
}

.webinar-image {
    width: 500px;
    margin-right: 95px;
}

.webinar1-image {
    max-width: 600px;
    margin-right: 180px;
}

.webinar2-image {
    max-width: 500px;
    margin-right: 85px;
}

.book-details {
    max-width: 600px;
}

.book-link, .podcast-link {
    color: blue;
    text-decoration: underline;
    font-size: 14px;
    margin: 5px 0;
    display: block;
}

.book-description, .podcast-description {
    font-size: 14px;
    color: #555;
}

.podcast-container strong {
    font-size: 16px;
}

.podcast-link {
    font-size: 14px;
    color: blue;
    text-decoration: underline;
    margin-bottom: 5px;
    display: inline-block;
}
/* Podcast card layout override */
.podcast-card {
    flex-direction: column;       /* image on top */

}

/* Increase image size + responsive */
.podcast-image {
    max-width: 800px;             /* desktop width */
    width: 100%;
    height: 500px;                /* increased height */
    margin-right: 0;              /* override existing */
   
    border-radius: 12px;
}

/* Space between image and title */
.podcast-card .book-details {
    margin-top: 15px;
    max-width: 420px;
}

/* Tablet */
@media (max-width: 768px) {
    .podcast-image {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .podcast-image {
        height: 180px;
    }

    .podcast-card .book-details p {
        font-size: 15px;
    }
}
