body {
  margin: 0;
  color: var(--cb-color-text, #1f1a17);
  background: var(--cb-color-bg, #f6f2eb);
  font-family: var(--cb-font-body, "Helvetica Neue", Arial, sans-serif);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.l-container {
  width: min(100% - 32px, 1400px);
  margin: 0 auto;
}

:root {
  --cb-color-bg: #f6f2eb;
  --cb-color-text: #1f1a17;
  --cb-color-accent: #2e9ad0;
  --cb-color-surface: #fffdf9;
  --cb-color-border: #dfd7c8;
  --cb-header-overlay-gutter: 70px;
  --cb-header-height: 88px;
  --cb-hero-height: 100svh;
}

.c-site-footer {
  padding: 100px 0 76px;
  color: #f5f7fb;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28)),
    var(--cb-footer-background-color, #0b2b40);
}

.c-site-header {
  width: 100%;
}

.c-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 16px 0;
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.55s ease,
    box-shadow 0.55s ease;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.c-site-header--overlay {
  position: absolute;
  color: #fff;
  background: rgba(7, 32, 48, 0);
  box-shadow: none;
}

html[data-scrolled="true"] .c-site-header--overlay {
  position: fixed;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 30px rgba(23, 19, 15, 0.08);
  animation: craftbase-header-slide-down 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-site-header--static {
  position: sticky;
  z-index: 25;
  padding: 20px 0;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 10px 30px rgba(23, 19, 15, 0.08);
}

.c-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.c-site-header__branding,
.c-site-footer__brand {
  display: grid;
  gap: 4px;
}

.c-site-footer__inner {
  display: grid;
  gap: 24px;
}

.c-site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}

.c-site-header__branding {
  flex: 0 0 auto;
}

.c-site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: right;
}

.c-site-header__cta {
  flex: 0 0 auto;
  margin-left: auto;
}

.c-site-header__logo img {
  display: block;
  width: auto;
  max-height: 42px;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.c-site-header__title,
.c-site-footer__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  transition: font-size 0.35s ease, color 0.35s ease;
}

.c-site-header__description {
  margin: 0;
  color: var(--cb-color-text, #1f1a17);
  font-size: 0.92rem;
  transition: opacity 0.35s ease, color 0.35s ease;
  opacity: 0.72;
}

.c-site-footer__logo img {
  display: block;
  width: auto;
  height: 35px;
  max-height: 35px;
}

.c-site-footer__brand {
  align-content: start;
  gap: 10px;
  justify-items: start;
}

.c-site-footer__brand-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.c-site-footer__title,
.c-site-footer__heading,
.c-site-footer__copyright p {
  color: #ffffff;
}

.c-site-footer__title {
  font-size: 35px;
  line-height: 1;
}

.c-site-footer__socials {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.c-site-footer__social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #ffffff;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.c-site-footer__social-button:hover,
.c-site-footer__social-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.56);
}

.c-site-footer__social-button svg,
.c-site-footer__social-fallback {
  width: 16px;
  height: 16px;
}

.c-site-footer__social-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.c-site-footer__heading {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 100;
  letter-spacing: 0.08em;
}

.c-site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.c-site-footer__column {
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
}

.c-site-header--overlay .c-site-header__description {
  color: rgba(255, 255, 255, 0.72);
}

.c-site-nav,
.c-footer-nav {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.c-site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.c-site-header--overlay .c-site-nav a,
.c-site-header--overlay .c-site-header__title a {
  color: #fff;
}

.c-site-header__cta {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.c-footer-nav {
  flex-wrap: wrap;
  gap: 12px 18px;
}

.c-footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.35;
}

.c-footer-nav--stack {
  display: grid;
  gap: 10px;
}

.c-footer-nav--stack li {
  display: block;
}

.c-footer-nav--inline {
  flex-wrap: wrap;
  gap: 10px 18px;
}

.c-site-footer__company-list {
  display: grid;
  gap: 16px;
}

.c-site-footer__company-block {
  display: grid;
  gap: 4px;
}

.c-site-footer__company-label {
  margin: 0;
  color: #efefef;
  font-size: 11px;
  line-height: 1.25;
}

.c-site-footer__company-item {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.c-site-footer__company-item a {
  color: rgba(255, 255, 255, 0.82);
}

.c-site-footer__subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.c-site-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.c-site-footer__copyright {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.c-site-footer__copyright p {
  margin: 0;
  font-size: 11px;
  color: #efefef;
  line-height: 1.35;
}

.c-site-footer__subnav .c-footer-nav a {
  font-size: 11px;
  color: #efefef;
}

.c-site-header--overlay .c-site-header__inner {
  width: calc(100% - var(--cb-header-overlay-gutter));
  max-width: none;
}

html[data-scrolled="true"] .c-site-header--overlay .c-site-header__inner,
.c-site-header--static .c-site-header__inner {
  width: min(100% - 32px, 1200px);
  max-width: 1200px;
}

html[data-scrolled="false"] .c-site-header--overlay {
  padding: 16px 0;
}

html[data-scrolled="false"] .c-site-header--overlay .c-site-header__logo img {
  max-height: 46px;
}

html[data-scrolled="false"] .c-site-header--overlay .c-site-header__title {
  font-size: 1.14rem;
}

html[data-scrolled="false"] .c-site-header--overlay .c-site-header__cta {
  opacity: 0.96;
  transform: translateY(0);
}

html[data-scrolled="true"] .c-site-header--overlay .c-site-header__logo img {
  max-height: 34px;
}

html[data-scrolled="true"] .c-site-header--overlay .c-site-header__title a,
html[data-scrolled="true"] .c-site-header--overlay .c-site-nav a {
  color: #1f1a17;
}

html[data-scrolled="true"] .c-site-header--overlay .c-site-header__description {
  color: #615b55;
  opacity: 0.88;
}

html[data-scrolled="true"] .c-site-header--overlay .c-site-header__cta {
  opacity: 1;
  transform: translateY(0);
}

body.has-fixed-header .l-site__main,
body.has-fixed-header .site-main {
  scroll-margin-top: calc(var(--cb-header-height) + 20px);
}

.c-home-section,
.c-page-header,
[id] {
  scroll-margin-top: calc(var(--cb-header-height) + 20px);
}

.c-site-header__toggle {
  display: none;
}

.c-page-header,
.c-post-card,
.c-empty-state {
  margin-bottom: 24px;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.c-button:hover {
  opacity: 0.9;
}

.c-button--primary {
  background: var(--cb-color-accent, #2e9ad0);
  color: #fff;
}

.c-button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.c-home-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--cb-hero-height);
  display: flex;
  align-items: center;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(120, 214, 255, 0.35), transparent 40%),
    linear-gradient(180deg, #166a8f 0%, #0c3f5d 64%, var(--cb-color-bg, #f6f2eb) 64%, var(--cb-color-bg, #f6f2eb) 100%);
}

.c-home-hero__media,
.c-home-hero__overlay,
.c-home-hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.c-home-hero__video,
.c-home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-home-hero__overlay {
  background:
    linear-gradient(rgba(4, 31, 45, 0.58), rgba(8, 24, 37, 0.56)),
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.14), transparent 12%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.08), transparent 10%);
}

.c-home-hero__dots {
  opacity: var(--cb-hero-dots-opacity, 0.36);
  background-image: radial-gradient(circle, var(--cb-hero-dots-color, #ffffff) var(--cb-hero-dots-size, 1px), transparent calc(var(--cb-hero-dots-size, 1px) + 0.4px));
  background-size: var(--cb-hero-dots-gap, 22px) var(--cb-hero-dots-gap, 22px);
  background-position: center center;
}

.c-home-hero__inner,
.c-home-cta__inner {
  position: relative;
  z-index: 1;
}

.c-home-hero__inner {
  max-width: 980px;
  text-align: center;
}

.c-home-hero__caption {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c-home-hero__caption span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.c-home-hero__eyebrow,
.c-section-heading__eyebrow,
.c-home-cta__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.c-section-heading__eyebrow {
  color: var(--cb-color-accent, #2e9ad0);
}

.c-home-hero__title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.c-home-hero__lead,
.c-section-heading__lead,
.c-home-cta__text {
  max-width: 720px;
  margin: clamp(16px, 2vw, 22px) auto 0;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.c-home-hero__actions,
.c-home-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(20px, 3vw, 28px);
}

.c-home-hero__note {
  max-width: 640px;
  margin: clamp(20px, 3vw, 28px) auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.88rem, 1.2vw, 0.94rem);
}

.c-home-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vw, 40px);
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  transform: translateX(-50%);
}

.c-home-hero__scroll-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
}

.c-home-hero__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 84px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.c-home-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #fff;
  animation: craftbase-scroll-indicator 2s ease-in-out infinite;
}

.c-home-section {
  padding: 80px 0;
}

.c-home-section--light {
  background: var(--cb-color-bg, #f6f2eb);
}

.c-home-section--dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 100, 129, 0.92), rgba(8, 31, 47, 0.96)),
    #0a2438;
}

.c-home-notice {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.6fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.c-home-notice__intro {
  align-self: center;
  padding: 70px 0;
}

.c-home-notice__eyebrow {
  margin: 0;
  color: var(--cb-color-accent, #2e9ad0);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.c-home-notice__title {
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: 350;
  line-height: 1.1;
}

.c-home-notice__content {
  display: grid;
  gap: 20px;
  align-self: center;
}

.c-home-notice__list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.c-home-notice__item {
  border-bottom: 1px solid var(--cb-color-border, #dfd7c8);
}

.c-home-notice__link {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: 18px 0;
}

.c-home-notice__thumb {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cb-color-surface, #fffdf9);
  aspect-ratio: 4 / 3;
}

.c-home-notice__thumb img,
.c-home-notice__thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.c-home-notice__thumb img {
  object-fit: cover;
}

.c-home-notice__thumb-placeholder {
  background: linear-gradient(135deg, color-mix(in srgb, var(--cb-color-accent, #2e9ad0) 28%, #ffffff), color-mix(in srgb, var(--cb-color-bg, #f6f2eb) 72%, #ffffff));
}

.c-home-notice__body {
  display: grid;
  gap: 8px;
  align-content: center;
  align-self: center;
  min-width: 0;
}

.c-home-notice__date {
  color: var(--cb-color-text, #1f1a17);
  opacity: 0.64;
  font-size: 0.52rem;
  letter-spacing: 0.04em;
}

.c-home-notice__item-title {
  min-width: 0;
  font-size: clamp(1.25rem, 1.85vw, 1.6rem);
  line-height: 1.3;
}

.c-home-notice__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--cb-color-text, #1f1a17);
  opacity: 0.76;
  font-size: 0.8rem;
  line-height: 1.5;
}

.c-home-notice__more-inline {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: var(--cb-color-accent, #2e9ad0);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-home-notice__more-inline svg,
.c-home-notice__more svg {
  width: 0.9em;
  height: 0.9em;
  flex: 0 0 auto;
  margin-bottom: -1px;
}

.c-home-notice__link:hover .c-home-notice__more-inline,
.c-home-notice__link:focus-visible .c-home-notice__more-inline {
  transform: translateX(4px);
}

.c-home-notice__more-wrap {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
}

.c-home-notice__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #000000;
  color: var(--cb-color-accent, #2e9ad0);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
}

.c-section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.c-section-heading__title,
.c-home-cta__title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.2;
}

.c-section-heading--inverse {
  color: #fff;
}

.c-feature-grid,
.c-icon-grid,
.c-post-archive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.c-feature-card,
.c-icon-card,
.c-comparison__item,
.c-empty-state {
  border-radius: 22px;
}

.c-feature-card {
  padding: 28px;
  background: var(--cb-color-surface, #fffdf9);
  border: 1px solid var(--cb-color-border, #dfd7c8);
  box-shadow: 0 14px 48px rgba(29, 24, 19, 0.06);
}

.c-feature-card__title {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.c-feature-card__text {
  margin: 0;
  color: var(--cb-color-text, #1f1a17);
  opacity: 0.78;
}

.c-icon-card {
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.c-icon-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.c-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.c-comparison__item {
  padding: 28px;
  background: var(--cb-color-surface, #fffdf9);
  border: 1px solid var(--cb-color-border, #dfd7c8);
}

.c-comparison__item h3 {
  margin-top: 0;
}

.c-comparison__item ul {
  margin: 0;
  padding-left: 1.2rem;
}

.c-post-card {
  border: 1px solid var(--cb-color-border, #dfd7c8);
  border-radius: 20px;
  background: var(--cb-color-surface, #fffdf9);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(29, 24, 19, 0.06);
}

.c-post-card__thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.c-post-card__body {
  padding: 24px;
}

.c-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  color: var(--cb-color-text, #1f1a17);
  opacity: 0.7;
}

.c-entry-title {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.4;
}

.c-post-card__excerpt {
  margin-top: 14px;
  color: var(--cb-color-text, #1f1a17);
  opacity: 0.78;
}

.c-empty-state {
  padding: 32px;
  background: var(--cb-color-surface, #fffdf9);
  border: 1px solid var(--cb-color-border, #dfd7c8);
}

.c-empty-state__title {
  margin-top: 0;
}

.c-home-cta {
  padding: 72px 0 88px;
  color: #fff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--cb-color-accent, #2e9ad0) 78%, #ff8c3a), rgba(14, 71, 103, 0.98)),
    #0d344d;
}

.c-home-cta__inner {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.c-mobile-nav[hidden] {
  display: none;
}

@media (max-width: 960px) {
  .c-feature-grid,
  .c-icon-grid,
  .c-post-archive,
  .c-home-cta__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .c-site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-site-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .c-site-footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .c-site-footer__copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-site-footer__subnav {
    justify-self: start;
    justify-content: flex-start;
  }

  .c-site-header__nav {
    display: none;
    flex: none;
  }

  .c-site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--cb-color-border, #dfd7c8);
    border-radius: 999px;
    background: var(--cb-color-surface, #fffdf9);
  }

  .c-mobile-nav {
    width: 100%;
  }

  .c-site-header__cta {
    margin-left: 0;
  }

  .c-mobile-nav__menu {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 12px 0 0;
    padding: 0;
  }

  .c-home-hero__actions,
  .c-home-cta__actions {
    flex-direction: column;
  }

  .c-feature-grid,
  .c-icon-grid,
  .c-post-archive,
  .c-comparison,
  .c-home-notice,
  .c-home-cta__inner {
    grid-template-columns: 1fr;
  }

  .c-home-notice__content {
    gap: 18px;
  }

  .c-home-notice__link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .c-home-hero {
    background: linear-gradient(180deg, #166a8f 0%, #0c3f5d 58%, var(--cb-color-bg, #f6f2eb) 58%, var(--cb-color-bg, #f6f2eb) 100%);
  }

  .c-site-header,
  .c-site-header--static {
    padding: 16px 0;
  }

  .c-site-header--overlay {
    position: fixed;
    background: rgba(12, 63, 93, 0.36);
  }

  .c-site-header--static {
    position: relative;
  }

  html[data-scrolled="true"] .c-site-header--overlay {
    background: rgba(255, 255, 255, 0.96);
  }

  .c-home-section,
  .c-home-cta {
    padding: 56px 0;
  }

  .c-home-hero__title {
    font-size: clamp(1.9rem, 8.5vw, 3rem);
  }

  .c-home-hero__caption {
    gap: 10px;
    margin-top: 18px;
  }

  .c-home-hero__scroll-line {
    height: 64px;
  }

}

.l-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.l-content--has-sidebar {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.l-content__main,
.l-content__sidebar {
  min-width: 0;
}

.c-page-header {
  padding: 24px 0 8px;
}

.c-page-header__title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.2;
}

.c-page-header__description {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--cb-color-text, #1f1a17);
  opacity: 0.72;
}

.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cb-color-text, #1f1a17);
  opacity: 0.62;
  font-size: 0.84rem;
}

.c-entry {
  padding: 32px;
  border: 1px solid var(--cb-color-border, #dfd7c8);
  border-radius: 24px;
  background: var(--cb-color-surface, #fffdf9);
  box-shadow: 0 14px 40px rgba(29, 24, 19, 0.05);
}

.c-entry__header {
  margin-bottom: 24px;
}

.c-entry__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.25;
}

.c-entry__thumbnail {
  margin-top: 20px;
}

.c-entry__thumbnail img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.c-entry__content > *:first-child {
  margin-top: 0;
}

.c-entry__content > *:last-child {
  margin-bottom: 0;
}

.c-entry__footer {
  margin-top: 32px;
}

.c-related-posts {
  margin-top: 32px;
}

.c-related-posts__title {
  margin: 0 0 18px;
  font-size: 1.3rem;
}

.c-sidebar .widget {
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid var(--cb-color-border, #dfd7c8);
  border-radius: 20px;
  background: var(--cb-color-surface, #fffdf9);
}

.widget-title {
  margin-top: 0;
  font-size: 1rem;
}

@media (max-width: 720px) {
  .l-content--has-sidebar {
    grid-template-columns: 1fr;
  }

  .c-entry {
    padding: 24px;
  }
}

@keyframes craftbase-header-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes craftbase-scroll-indicator {
  0% {
    transform: translateY(-34px);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    transform: translateY(84px);
    opacity: 0;
  }
}
