/* =======================================
   NEWS PAGE SPECIFIC STYLES
   ======================================= */

.news-banner {
  background: linear-gradient(135deg, #061020 0%, #0a1931 100%);
  padding: 80px 5%;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.news-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  z-index: 1;
}

.news-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-tag {
  color: #d4af37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.05);
}

.news-banner h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.news-banner h1 span {
  color: #d4af37;
}

.news-banner p {
  font-size: 17px;
  color: #cccccc;
  line-height: 1.6;
}

/* NEWS GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.news-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #b8960f 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

.news-card:hover::before {
  opacity: 1;
}

.news-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.news-category {
  font-size: 11px;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.news-date {
  font-size: 12px;
  color: #777777;
  font-weight: 500;
}

.news-card-body {
  flex-grow: 1;
  margin-bottom: 24px;
}

.news-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-body h3 {
  color: #d4af37;
}

.news-card-body p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f2f2f2;
  padding-top: 18px;
}

.read-more-btn {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  transition: color 0.3s;
}

.read-more-btn:hover {
  color: #d4af37;
}

.read-time {
  font-size: 12px;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media(max-width: 768px) {
  .news-banner {
    padding: 60px 5%;
  }
  
  .news-banner h1 {
    font-size: 34px;
  }
  
  .news-banner p {
    font-size: 15px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
