/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: 80px 0;
  background: var(--black);
}
.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Featured Article */
.news-featured {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
  transition: all 0.4s ease;
}
.news-featured:hover {
  border-color: rgba(255,242,0,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.news-featured-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
}
.news-featured-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-featured:hover .news-featured-img img {
  transform: scale(1.05);
}
.news-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--kiumi-gold);
  color: var(--kiumi-navy);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-category-tag.small {
  padding: 3px 10px;
  font-size: 10px;
}
.news-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.news-date,
.news-read-time {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-date i,
.news-read-time i { color: var(--kiumi-gold); }
.news-featured-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.news-featured-excerpt {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.news-read-more,
.news-card-cta {
  color: var(--kiumi-gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.news-featured:hover .news-read-more,
.news-card:hover .news-card-cta {
  gap: 12px;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.news-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.news-card:hover {
  border-color: rgba(255,242,0,.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
}
.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.06);
}
.news-card-body {
  padding: 20px;
}
.news-card-meta {
  margin-bottom: 10px;
}
.news-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-card-excerpt {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--kiumi-navy) 0%, #000d22 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,242,0,.06) 0%, transparent 70%);
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kiumi-gold), var(--kiumi-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--kiumi-navy);
}
.newsletter-section h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.newsletter-section p {
  color: rgba(255,255,255,.55);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 40px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--kiumi-gold);
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--kiumi-gold);
  color: var(--kiumi-navy);
  border: none;
  border-radius: 40px;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: var(--kiumi-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,242,0,.4);
}

/* ============================================
   NEWS DETAIL PAGE
   ============================================ */
.article-hero {
  padding: 60px 0 0;
  background: var(--black);
}
.article-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.article-header {
  text-align: center;
  margin-bottom: 40px;
}
.article-meta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.article-category {
  background: var(--kiumi-gold);
  color: var(--kiumi-navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-date-author {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-date-author i { color: var(--kiumi-gold); }
.article-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.article-subtitle {
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.7;
}
.article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.article-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-body {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 2;
}
.article-body h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 36px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--kiumi-gold);
}
.article-body p { margin-bottom: 20px; }
.article-body strong { color: var(--kiumi-gold); }
.article-body blockquote {
  background: rgba(255,242,0,.08);
  border-left: 4px solid var(--kiumi-gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
  color: rgba(255,255,255,.85);
}
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.article-share-label {
  color: rgba(255,255,255,.4);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 8px;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.25s ease;
}
.share-btn:hover {
  background: var(--kiumi-gold);
  border-color: var(--kiumi-gold);
  color: var(--kiumi-navy);
  transform: translateY(-2px);
}

/* Related Articles */
.related-section {
  padding: 80px 0;
  background: var(--kiumi-navy);
}
.related-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.related-header {
  text-align: center;
  margin-bottom: 40px;
}
.related-header h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .news-featured-link { grid-template-columns: 1fr; }
  .news-featured-img { aspect-ratio: 16/7; }
  .news-featured-body { padding: 28px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-container { padding: 0 20px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .article-container { padding: 0 20px 60px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-container { padding: 0 20px; }
}
