/* HERO */
.news-hero{
  height: 420px;
  background: linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
  ),
  url('/Uploads/Images/site/freepik__the_style_is_3d_model_with_octane_render_volumetri__10886.png') center/cover no-repeat;
  position: relative;
}

.news-hero-overlay{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.news-hero-badge{
  padding: 6px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #2b003f;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.news-hero h1{
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.news-hero p{
  margin-top: 12px;
  letter-spacing: 2px;
}

/* GENEL */
.news-section{
  padding: 90px 20px;
  background: #f7f7f9;
}

.news-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* GİRİŞ */
.news-intro{
  max-width: 800px;
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 1.8;
}

/* GRID */
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.news-card{
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  transition: .3s ease;
}

.news-card:hover{
  transform: translateY(-6px);
}

.news-card h3{
  color: #2b003f;
  margin-bottom: 12px;
}

/* METİN */
.news-text{
  max-width: 900px;
  margin-bottom: 80px;
}

.news-text h2{
  font-size: 30px;
  margin-bottom: 18px;
  color: #2b003f;
}

.news-text p{
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CTA */
.news-cta{
  background: #2b003f;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  color: #fff;
}

.news-cta h3{
  font-size: 26px;
  margin-bottom: 24px;
}

.news-btn{
  display: inline-flex;
  padding: 16px 42px;
  border-radius: 999px;
  background: #fff;
  color: #2b003f;
  font-weight: 700;
  text-decoration: none;
  transition: .25s;
}

.news-btn:hover{
  transform: translateY(-2px);
}

/* MOBİL */
@media(max-width: 900px){
  .news-grid{
    grid-template-columns: 1fr;
  }

  .news-hero h1{
    font-size: 32px;
  }
}
