/**
 * Welcome to live styling edits within the browser with the CSS Editor!
 * Please commit large changes to the site repository, if possible.
 * Thanks and enjoy!
 */

        .video-library-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }

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

        .video-library-card {
            border: 0px;
            border-radius: px;
            overflow: hidden;
            text-align: center;
        }

        .video-library-card h3 {
            text-align: left;
            margin: 15px 0;
            transition: text-decoration 0.3s ease;
        }

        .video-library-card h3:hover {
            text-decoration: underline;
        }

.mailchimp-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.mailchimp-container iframe {
  width: 100% !important;
  max-width: 100%;
  height: 600px;
  display: block;
  border: none;
}

@media (max-width: 600px) {
  .mailchimp-container iframe {
    height: 500px;
  }
}