/*
 * Değerlenir — blog page styles
 * Loaded only by blog.html. Shared header rules live in degerle-header.css.
 */

.degerle-blog-page {
  background: #f7f8fb;
  color: #061541;
}

.degerle-blog-hero {
  position: relative;
  min-height: 430px;
  padding: 132px 0 86px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(4, 14, 39, 0.95), rgba(4, 14, 39, 0.78) 47%, rgba(4, 14, 39, 0.2)), url("../images/blog/banner-blog.jpg") center / cover no-repeat;
}

.degerle-blog-hero-content {
  max-width: 720px;
  color: #ffffff;
}

.degerle-blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.degerle-blog-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7a1a;
}

.degerle-blog-hero h1 {
  margin: 22px 0 18px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
}

.degerle-blog-mark {
  width: 58px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #ff7a1a;
}

.degerle-blog-hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.78;
}

.degerle-blog-section {
  padding: 66px 0 70px;
}

.degerle-blog-card {
  height: 100%;
  border: 1px solid rgba(6, 21, 65, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(6, 21, 65, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.degerle-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 26, 0.34);
  box-shadow: 0 22px 52px rgba(6, 21, 65, 0.12);
}

.degerle-blog-img {
  height: 238px;
  border-radius: 0;
}

.degerle-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.degerle-blog-card .content-box {
  min-height: 258px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
}

.degerle-blog-meta {
  margin-bottom: 14px;
  color: #627084;
  font-size: 12px;
}

.degerle-blog-card .title {
  margin-bottom: 12px;
  color: #061541;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 800;
}

.degerle-blog-card .description {
  margin-bottom: 18px;
  color: #596579;
  font-size: 14px;
  line-height: 1.68;
}

.degerle-blog-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #ff7a1a;
  font-size: 13px;
  font-weight: 800;
}

.degerle-blog-cta {
  padding: 0 0 76px;
}

.degerle-blog-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ff7a1a, #f35d0b);
  color: #ffffff;
  box-shadow: 0 24px 54px rgba(255, 122, 26, 0.24);
}

.degerle-blog-cta-box h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 800;
}

.degerle-blog-cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.6;
}

.degerle-blog-cta-box .tf-btn {
  min-width: 190px;
  border-color: #ffffff;
  background: #ffffff;
  color: #061541;
}

@media (max-width: 991px) {
  .degerle-blog-hero h1 {
  font-size: 44px;
  }

  .degerle-blog-cta-box {
  align-items: flex-start;
  flex-direction: column;
  }
}

@media (max-width: 575px) {
  .degerle-blog-hero {
  min-height: 360px;
  padding: 112px 0 58px;
  }

  .degerle-blog-hero h1 {
  font-size: 36px;
  }

  .degerle-blog-section {
  padding: 48px 0 56px;
  }

  .degerle-blog-img {
  height: 210px;
  }

  .degerle-blog-card .content-box {
  min-height: auto;
  padding: 20px;
  }

  .degerle-blog-cta-box {
  padding: 26px 22px;
  }
}