.modal {
  padding: 10px 10px;
}

.modal-desktop {
  max-width: 700px;
}

.modal .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.modal img {
  width: 100%;
  height: auto;
}

/* Newsletter text styling for impact */
.newsletter-text {
  padding: 20px;
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 300px;
}

.newsletter-headline {
  font-size: 1.8em;
  font-weight: bold;
  color: #1334de;
  margin-bottom: 15px;
  line-height: 1.3;
}

.newsletter-tagline {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.newsletter-tagline strong {
  color: #333;
  font-weight: 700;
}

.newsletter-description {
  font-size: 1.1em;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .newsletter-text {
    display: none;
  }
}
