body {
  padding-top: 90px;
}

/* ====== Sayfa Başlığı ====== */
.page-header {
  background: linear-gradient(135deg, #001145 0%, #002966 50%, #0055aa 100%);
  padding: 80px 0 60px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/theme/oguzlar/background_oguzlar.jpg") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== Öne Çıkan Duyuru ====== */
.featured-news {
  background: linear-gradient(135deg, #001145, #002966);
  color: #fff;
  padding: 60px 0;
}

.featured-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-card h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.featured-btn {
  background: #fff;
  color: #001145;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.featured-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #001145;
  text-decoration: none;
}

/* ====== Duyurular Grid ====== */
.news-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #e0e0e0;
  position: relative;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 85, 170, 0.15);
  border-color: #0055aa;
}

.news-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #001145, #002966);
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.news-content {
  padding: 2rem;
}

.news-category {
  display: inline-block;
  background: linear-gradient(90deg, #0055aa, #0077ee);
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.news-card h4 {
  color: #001145;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.news-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.read-more {
  color: #0055aa;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  color: #001145;
  transform: translateX(5px);
}

/* ====== Responsive ====== */
@media (max-width: 1200px) {
  .page-header h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 70px 0 50px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .news-section {
    padding: 60px 0;
  }

  .news-content {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.9rem;
  }
}
@media (max-width: 360px) {
  .page-header h1 {
    font-size: 1.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scrolling-text {
    animation: none;
  }

  /* ====== Pagination Stilleri ====== */
  .pagination {
    margin: 0;
  }

  .page-link {
    color: #001145;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .page-link:hover {
    color: #fff;
    background-color: #0055aa;
    border-color: #0055aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 85, 170, 0.3);
  }

  .page-item.active .page-link {
    color: #fff;
    background-color: #001145;
    border-color: #001145;
    box-shadow: 0 4px 12px rgba(0, 17, 69, 0.4);
  }

  .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
    cursor: not-allowed;
  }
}
