img { max-width: 100%; display: block; }


/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  color: #023047;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

/* Featured Issue – SIDE-BY-SIDE on desktop */
.featured {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.featured img {
  flex: 0 0 220px;
  width: 220px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.featured-text {
  flex: 1;
  min-width: 0;
}

.featured-text h3 {
  margin: 0 0 0.8rem;
  color: #EC5224;
  font-size: 1.6rem;
}

.featured-text p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: #EC5224;
  color: #fff;
  padding: 0.75rem 1.6rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.btn:hover { 
  background: #d43f1a; 
}

/* Issue Teaser Grid */
.issue-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.issue-teaser-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform .3s;
  text-decoration: none;
  color: inherit;
}

.issue-teaser-card:hover { 
  transform: translateY(-6px); 
}

.issue-teaser-card img { 
  width: 100%; 
  height: 220px; 
  object-fit: cover; 
}

.issue-teaser-info { 
  padding: 1rem; 
}

.issue-teaser-month { 
  font-size: .9rem; 
  color: #EC5224; 
  font-weight: bold; 
  text-transform: uppercase; 
}

.issue-teaser-title { 
  margin: .5rem 0; 
  font-size: 1.3rem; 
  color: #023047; 
}

.issue-teaser-desc { 
  font-size: .9rem; 
  color: #666; 
  margin: .5rem 0; 
}

.issue-teaser-btn { 
  display: inline-block; 
  background: #EC5224; 
  color: #fff; 
  padding: .5rem 1.2rem; 
  border-radius: 30px; 
  font-size: .9rem; 
  margin-top: .8rem; 
}

.issue-current { 
  transform: scale(1.05); 
  border: 3px solid #EC5224; 
  box-shadow: 0 6px 20px rgba(0,0,0,0.1); 
}

/* Blog Preview */
.blog-preview {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin: 2rem auto;
  max-width: 1200px;
}

.blog-preview h2 {
  color: #023047;
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.post-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform .3s;
}

.post-card:hover { 
  transform: translateY(-6px); 
}

.post-img { 
  width: 100%; 
  height: 160px; 
  object-fit: cover; 
}

.post-info { 
  padding: 1rem; 
}

.post-date { 
  font-size: 0.8rem; 
  color: #EC5224; 
  font-weight: bold; 
  margin-bottom: 0.3rem; 
}

.post-title { 
  font-size: 1.1rem; 
  color: #023047; 
  margin: 0.4rem 0; 
  line-height: 1.3; 
}

.post-excerpt { 
  font-size: 0.9rem; 
  color: #555; 
  margin: 0.4rem 0; 
  line-height: 1.4; 
}

.read-more { 
  color: #EC5224; 
  font-weight: bold; 
  font-size: 0.85rem; 
}


/* Responsive */
@media (max-width: 768px) {
  .social-float { display: none; }
  .hero-text h1 { font-size: 2.2rem; }
  .featured { flex-direction: column; text-align: center; }
  .featured img { width: 100%; max-width: 280px; margin: 0 auto 1.5rem; }
  #mc_embed_signup { padding: 1.5rem; }
  .blog-preview { padding: 1.5rem; }
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.more-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform .3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.more-card:hover {
  transform: translateY(-6px);
}

.more-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.more-card-info {
  padding: 1.5rem;
  text-align: left;
}

.more-card-info h3 {
  font-size: 1.4rem;
  color: #023047;
  margin: 0 0 0.8rem;
}

.more-card-info p {
  font-size: 1rem;
  color: #666;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.more-btn {
  display: inline-block;
  color: #EC5224;
  font-weight: bold;
  font-size: 1rem;
}

/* Optional: Softer look for "coming soon" */
.coming-soon {
  opacity: 0.85;
}

.coming-soon .more-btn {
  color: #888;
}