/* ===== MAGAZINE FEATURED SECTION ===== */
.magazine-featured-section {
  background-color: #ffffff;
  padding: 32px 0;
}

/* ===== GRID LAYOUT ===== */
.magazine-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; /* 100px gap between image & content */
  align-items: center;
}

/* ===== LEFT: IMAGE ===== */
.magazine-img-wrapper {
  width: 100%;
}

.magazine-img-placeholder {
  width: 100%;
  height: 480px;
  background-color: #b5c9b7;
  border-radius: 16px;
  overflow: hidden;
}

.magazine-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ===== RIGHT: CONTENT ===== */
.magazine-content {
  display: flex;
  flex-direction: column;
}

/* ===== LABEL ===== */
.magazine-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #006e25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

/* ===== HEADING ===== */
.magazine-heading {
  font-size: 36px;
  line-height: 125%;
  font-weight: 700;
  color: #181c20;
  margin: 0 0 8px 0;
}

/* ===== META: DATE & AUTHOR ===== */
.magazine-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.magazine-date {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 700;
  color: #3e4a3c;
}

.magazine-author {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 600;
  color: #181c20;
}

.magazine-author i {
  font-weight: 400;
  font-style: normal;
  color: #3e4a3c;
}

/* ===== CONTENTS LIST ===== */
.magazine-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.magazine-list li {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 150%;
  color: #3e4a3c;
}

/* ===== DOWNLOAD BUTTON ===== */
.magazine-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* 8px gap between text and icon */
  padding: 16px 18px; /* 16px top/bottom, 18px left/right */
  background: linear-gradient(135deg, #007016 0%, #00aa34 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  width: fit-content;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.magazine-download-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .magazine-featured-grid {
    gap: 60px;
  }

  .magazine-img-placeholder {
    height: 400px;
  }

  .magazine-heading {
    font-size: 30px;
  }

  .magazine-list li {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .magazine-featured-section {
    padding: 48px 0;
  }

  .magazine-featured-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .magazine-img-placeholder {
    height: 360px;
    max-width: 480px;
    margin: 0 auto;
  }

  .magazine-heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .magazine-featured-section {
    padding: 36px 0;
  }

  .magazine-img-placeholder {
    height: 300px;
  }

  .magazine-meta {
    gap: 10px;
  }

  .magazine-date,
  .magazine-meta-sep,
  .magazine-author {
    font-size: 14px;
  }

  .magazine-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .magazine-featured-section {
    padding: 28px 0;
  }

  .magazine-img-placeholder {
    height: 260px;
  }

  .magazine-heading {
    font-size: 24px;
  }

  .magazine-label {
    font-size: 13px;
  }

  .magazine-list li {
    font-size: 14px;
  }

  .magazine-download-btn {
    width: 100%;
    justify-content: center;
  }
}
