
* {
  box-sizing: border-box;
}

#cf-blog-list {
  font-family: "Geom", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

#cf-blog-list::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(143, 173, 160, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(184, 147, 62, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.cf-blog-header {
  max-width: 124rem;
  margin: 0 auto;
  padding: 10rem 4.8rem 0;
  position: relative;
}
.cf-blog-header-inner {
  max-width: 72rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--accent);
}
.cf-blog-eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #5a7d72;
  background: #eaf3f0;
  padding: 0.6rem 1.8rem;
  margin-bottom: 2.8rem;
}
.cf-blog-title {
  font-size: clamp(5.8rem, 8vw, 10.2rem);
  font-weight: 200;
  line-height: 0.92;
  color: #2b2b25;
  margin-bottom: 2.8rem;
  margin-top: 0;
  letter-spacing: -0.03em;
}
.cf-blog-desc {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.75;
  color: #6b6860;
  max-width: 52rem;
  margin-top: 4rem;
}

.cf-header-accent {
  position: absolute;
  right: 4.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, #eaf3f0 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.cf-blog-main {
  max-width: 124rem;
  margin: 0 auto;
  padding: 8rem 4.8rem 14rem;
}

.cf-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.4rem 3.6rem;
}

@keyframes cfFadeUp {
  from {
    opacity: 0;
    transform: translateY(2.8rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cf-post-card {
  display: block;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  animation: cfFadeUp 0.65s both;
  box-shadow: 0 0.2rem 1.6rem rgba(43, 43, 37, 0.04);
}
.cf-post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.3rem;
  background: linear-gradient(to right, #8fada0, #b8933e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cf-post-card:hover::before {
  transform: scaleX(1);
}
.cf-post-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 1.6rem 5.6rem rgba(143, 173, 160, 0.16);
}

.cf-post-card:nth-child(1) {
  animation-delay: 0.08s;
}
.cf-post-card:nth-child(2) {
  animation-delay: 0.16s;
}
.cf-post-card:nth-child(3) {
  animation-delay: 0.24s;
}
.cf-post-card:nth-child(4) {
  animation-delay: 0.32s;
}
.cf-post-card:nth-child(5) {
  animation-delay: 0.4s;
}
.cf-post-card:nth-child(6) {
  animation-delay: 0.48s;
}
.cf-post-card:nth-child(7) {
  animation-delay: 0.56s;
}
.cf-post-card:nth-child(8) {
  animation-delay: 0.64s;
}
.cf-post-card:nth-child(9) {
  animation-delay: 0.72s;
}

.cf-post-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #c7dcd5;
}
.cf-post-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cf-post-card:hover .cf-post-img-wrap img {
  transform: scale(1.08);
}

.cf-post-content {
  padding: 3.2rem 2.8rem 2.8rem;
}
.cf-post-title {
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.32;
  color: #2b2b25;
  margin-top: 0;
  margin-bottom: 1.6rem;
  transition: color 0.2s;
}
.cf-post-card:hover .cf-post-title {
  color: #5a7d72;
}

.cf-post-excerpt {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.68;
  color: #6b6860;
  margin-bottom: 2.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cf-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid #ede9e1;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6860;
  font-size: 1.4rem;
}
.cf-post-meta svg {
  color: #8fada0;
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
}

.cf-pagination {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 8.8rem;
}
.cf-page-btn {
  min-width: 4.2rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6b6860;
  background: #ffffff;
  border: 1px solid #ede9e1;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 1.2rem;
}
.cf-page-btn:hover {
  border-color: #8fada0;
  color: #5a7d72;
  transform: translateY(-0.2rem);
}
.cf-page-btn.active {
  background: #5a7d72;
  border-color: #5a7d72;
  color: #ffffff;
}
.cf-page-btn.arrow {
  font-size: 1.8rem;
}

@media (max-width: 1000px) {
  .cf-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.6rem 2.8rem;
  }
  .cf-header-accent {
    display: none;
  }
}
@media (max-width: 640px) {
  .cf-breadcrumb {
    padding: 1.6rem 2.4rem;
  }
  .cf-blog-header {
    padding: 7.2rem 2.4rem 0;
  }
  .cf-blog-header-inner {
    padding-bottom: 5.2rem;
  }
  .cf-blog-main {
    padding: 6rem 2.4rem 10rem;
  }
  .cf-posts-grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .cf-blog-header,
  .cf-blog-main {
    padding-left: 0;
    padding-right: 0;
  }
}
