/* --- Blog Sayfası Genel Stilleri --- */
.content-section {
  padding: 5%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(184, 115, 51, 0.5);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #DA8E50;
  margin-bottom: 15px;
}

.blog-card-content h4 {
  margin: 0 0 15px 0;
  color: var(--text-primary);
  line-height: 1.4;
}

.blog-card-content p {
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
  max-height: 75px; 
  overflow: hidden; 
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
  mask-image: linear-gradient(180deg, #000 60%, transparent);
}

.blog-card-button {
  display: inline-block;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
  margin-top: auto;
  padding-top: 20px;
}

.blog-card-button i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-button {
  background: var(--dynamic-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-card:hover .blog-card-button i {
  transform: translateX(5px);
}

/* --- Tekil Blog Yazısı Sayfası Stilleri --- */
.blog-post-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5% 5%;
}

.blog-post-hero {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-post-category {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #DA8E50;
  text-transform: uppercase;
}

.blog-post-header h1 {
  font-size: 3rem;
  margin: 15px 0;
}

.blog-post-content {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.9;
}

.blog-post-content p {
  margin-bottom: 25px;
}

.blog-post-content h2, .blog-post-content h3 {
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Geri Dön Butonu */
.back-to-blog-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-to-blog-link:hover {
  background: var(--dynamic-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.back-to-blog-link i {
  margin-right: 8px;
}