#cf-article {
  font-family: "Geom", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.breadcrumb {
  padding: 1rem 3rem;
  margin: 0;
}

.cf-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 0.3rem;
  background: linear-gradient(to right, #8fada0, #b8933e);
  z-index: 1000;
  transition: width 0.1s linear;
}

.cf-article-hero {
  position: relative;
  width: 100%;
  height: min(70vh, 56rem);
  overflow: hidden;
  background: #c7dcd5;
}
.cf-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cfHeroReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes cfHeroReveal {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.cf-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(43, 43, 37, 0.55) 100%
  );
}

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

.cf-article-header {
  max-width: 74rem;
  margin: 0 auto;
  padding: 6.4rem 2.4rem 0;
  text-align: center;
  animation: cfFadeUp 0.9s 0.2s both;
}

.cf-article-header h1 {
  font-family: "Geom", sans-serif;
  font-size: clamp(3.5rem, 5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: #2b2b25;
  margin-bottom: 2rem;
}

.cf-article-lead {
  font-family: "Geom", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #6b6860;
  line-height: 1.75;
  max-width: 58rem;
  margin: 0 auto 3.6rem;
}

.cf-article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  padding: 2.4rem 0 4rem;
  border-bottom: 1px solid #ede9e1;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6860;
}
.cf-article-meta-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #8fada0;
}
.cf-article-meta span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cf-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 4.8rem auto;
  max-width: 20rem;
}
.cf-ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #8fada0);
}
.cf-ornament-line.right {
  background: linear-gradient(to left, transparent, #8fada0);
}
.cf-ornament svg {
  color: #b8933e;
  flex-shrink: 0;
}

.cf-article-body {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 2.4rem 8rem;
  animation: cfFadeUp 0.9s 0.4s both;
}

.cf-article-body p {
  font-family: "Geom", sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.8;
  color: #2b2b25;
  margin-bottom: 1.8em;
}
.cf-article-body p:first-of-type::first-letter {
  float: left;
  font-family: "Geom", sans-serif;
  font-size: 6rem;
  font-weight: 600;
  line-height: 0.9;
  color: #5a7d72;
  margin: 0.8rem 1.4rem 0 0;
}

.cf-article-body h2 {
  font-family: "Geom", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  color: #2b2b25;
  margin: 3em 0 0.8em;
  position: relative;
  padding-left: 2rem;
}
.cf-article-body h2::before {
  content: "";
  position: absolute;
  left: 0;

  width: 0.3rem;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #8fada0;
  border-radius: 0.2rem;
}
.cf-article-body h3 {
  font-family: "Geom", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a7d72;
  margin: 2.5em 0 0.8em;
}

.cf-article-body blockquote {
  margin: 3em -4rem;
  padding: 3.6rem 5.2rem;
  background: #ffffff;
  position: relative;
  box-shadow: 0 0.2rem 3rem rgba(143, 173, 160, 0.12);
}
.cf-article-body blockquote::before {
  content: "\201C";
  font-family: "Geom", sans-serif;
  font-size: 10rem;
  line-height: 0;
  color: #c7dcd5;
  position: absolute;
  top: 5rem;
  left: 2rem;
}
.cf-article-body blockquote p {
  font-family: "Geom", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.65;
  color: #2b2b25;
  margin: 0;
}
.cf-article-body blockquote p::first-letter {
  all: unset;
}
.cf-article-body blockquote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: "Geom", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a7d72;
}

.cf-article-body .cf-article-image {
  margin: 3em -2.4rem;
}
.cf-article-body .cf-article-image img {
  width: 100%;
  height: 42rem;
  object-fit: cover;
}
.cf-article-body .cf-article-image figcaption {
  font-size: 1.1rem;
  letter-spacing: 0.07em;
  color: #6b6860;
  text-align: center;
  margin-top: 1rem;
  padding: 0 2.4rem;
}

.cf-info-box {
  background: #c7dcd5;
  padding: 3.2rem 3.6rem;
  margin: 3em 0;
  border-left: 0.4rem solid #5a7d72;
}
.cf-info-box-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a7d72;
  margin-bottom: 1.2rem;
}
.cf-info-box p {
  font-size: 1.6rem !important;
  margin: 0 !important;
}
.cf-info-box p::first-letter {
  all: unset;
}

.cf-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 5.6rem;
  padding-top: 3.2rem;
  border-top: 1px solid #ede9e1;
}
.cf-article-tags a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6860;
  border: 1px solid #ede9e1;
  padding: 0.5rem 1.4rem;
  border-radius: 4rem;
  background: #ffffff;
  transition: all 0.2s;
}
.cf-article-tags a:hover {
  border-color: #8fada0;
  color: #5a7d72;
  background: #c7dcd5;
}

.cf-share-bar {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 4rem;
  padding: 2.8rem 3.2rem;
  background: #8fada0;
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 1px 3px,
    rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.cf-share-label {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-right: 0.4rem;
}
.cf-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #ede9e1;
  transition: all 0.2s;
  cursor: pointer;
}
.cf-share-btn:hover {
  background: #fff;
  color: #8fada0;
  transform: translateY(-0.2rem);
}

.cf-related-section {
  background: #ffffff;
  padding: 8rem 4rem;
  margin-top: 8rem;
}
.cf-related-section-inner {
  max-width: 110rem;
  margin: 0 auto;
}
.cf-section-label {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a7d72;
  margin-bottom: 1rem;
}
.cf-section-title {
  text-align: center;
  font-family: "Geom", sans-serif;
  font-size: clamp(2.6rem, 3vw, 3.8rem);
  font-weight: 300;
  color: #2b2b25;
  margin-bottom: 5.2rem;
}
.cf-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 3.2rem;
}
.cf-related-card {
  overflow: hidden;
  cursor: pointer;
  background: #f8f5ef;
}
.cf-related-card-img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cf-related-card:hover .cf-related-card-img {
  transform: scale(1.05);
}
.cf-related-card-body {
  padding: 2.4rem 0.4rem 0.4rem;
}
.cf-related-card-title {
  font-family: "Geom", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.35;
  color: #2b2b25;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.cf-related-card:hover .cf-related-card-title {
  color: #5a7d72;
}
.cf-related-card-excerpt {
  font-size: 1.3rem;
  font-weight: 300;
  color: #6b6860;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .breadcrumb {
    padding: 1rem;
    margin: 0;
  }
  .cf-breadcrumb-article {
    padding: 1.2rem 2rem;
  }
  .cf-article-header {
    padding: 4rem 2rem 0;
  }
  .cf-article-body {
    padding: 0 2rem 6rem;
  }
  .cf-article-body blockquote {
    margin: 2em 0;
    padding: 2.8rem 2.8rem 2.8rem 4.4rem;
  }
  .cf-article-body .cf-article-image {
    margin: 2em -2rem;
  }
  .cf-share-bar {
    flex-wrap: wrap;
    padding: 2rem;
  }
  .cf-related-section {
    padding: 6rem 2rem;
  }
}
