.media-section {
  background: #0d1017;
  padding: 120px 0;
  color: #fff;
  display: flex;
  justify-content: center;
  /* height: 100vh; */
}

.media-container-new {
  width: 90%;
  max-width: 1400px;
}

.media-title {
  font-size: 48px;
  font-weight: 600;
  color: #B2873B;
  /* margin-bottom: 50px; */
  text-align: left;
  text-align: center;
  padding: 20px 0;
}

/* ⭐ FIX: Proper Grid Layout */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  gap: 40px;
  width: 100%;
  overflow: hidden; /* removes scrollbar */
  /* min-height: 100vh; */
}

.media-card {
  background: #151922;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: 0.3s ease;
  text-align: center;
}

.media-card:hover {
  transform: translateY(-8px);
  border-color: #B2873B;
}

.media-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.media-desc {
  color: #dcdcdc;
  margin: 15px 0;
  line-height: 1.5;
  font-size: 1.1rem;
}

.media-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #B2873B;
  color: #B2873B;
  text-decoration: none;
  text-transform: uppercase;
}

.media-btn:hover {
  background: #89672c;
  color: #000;
}

