.blog-page-hero {
  min-height: 420px;
  padding: 140px 0 100px;
}

.blog-list-section {
  padding: 80px 0 100px;
  background-color: #fff;
}

.blog-list-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.blog-list-header h2 {
  color: #381e1f;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.blog-list-header p {
  color: #383838;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(61, 15, 17, 0.1);
  transform: translateY(-4px);
}

.blog-card-image-link {
  display: block;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.04);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.blog-card-date {
  color: #C02026;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.blog-card-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-card-title a {
  color: #381e1f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: #C02026;
}

.blog-card-excerpt {
  color: #383838;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #C02026;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-read-more svg {
  width: 16px;
  height: 16px;
}

.blog-card-read-more:hover {
  color: #a81b20;
  gap: 12px;
}

.blog-detail-hero {
  width: 100%;
  background-color: #f7f0f0;
}

.blog-detail-hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.blog-detail-section {
  padding: 48px 0 100px;
  background-color: #fff;
}

.blog-detail-inner {
  max-width: 820px;
  margin: 0 auto;
}

.blog-detail-date {
  display: block;
  color: #C02026;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-detail-title {
  color: #381e1f;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 28px;
}

.blog-detail-content p {
  color: #383838;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 20px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
  color: #381e1f;
  margin: 28px 0 12px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 0 0 20px 20px;
  color: #383838;
  line-height: 1.75;
}

.blog-list-empty {
  grid-column: 1 / -1;
  color: #383838;
  font-size: 16px;
  margin: 0;
}

.blog-detail-content p:last-child {
  margin-bottom: 0;
}

.blog-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: #C02026;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.blog-detail-back svg {
  width: 18px;
  height: 18px;
}

.blog-detail-back:hover {
  color: #a81b20;
  gap: 12px;
}

.about-page-hero {
  position: relative;
  min-height: 590px;
  padding: 150px 0 130px;
  background-color: #303030;
  background-image: url('/assets/images/about-bg.png');
  background-position: center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
}

.about-page-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.about-page-hero-inner {
  max-width: 720px;
}

.about-page-hero h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
  max-width: 700px;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.about-page-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 520px;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .blog-list-section {
    padding: 60px 0 80px;
  }

  .blog-list-header h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .blog-page-hero {
    min-height: 320px;
    padding: 120px 0 72px;
  }

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

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-list-header {
    margin-bottom: 32px;
  }

  .blog-detail-section {
    padding: 32px 0 72px;
  }

  .blog-detail-hero-image {
    height: 240px;
  }

  .blog-detail-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 991px) {
  .blog-detail-hero-image {
    height: 360px;
  }
}
