.hero {
  position: relative;
  min-height: 860px;
  height: 100svh;
  overflow: hidden;
  background: #0b0d0d;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7,9,9,.98) 0%, rgba(7,9,9,.86) 28%, rgba(7,9,9,.34) 61%, rgba(7,9,9,.16) 100%),
    linear-gradient(180deg, rgba(7,9,9,.18) 0%, rgba(7,9,9,.12) 55%, rgba(7,9,9,.92) 100%),
    url("../img/akanekoza-night.webp");
  background-position: center, center, 72% 42%;
  background-size: cover;
  transform: scale(1.035);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(220,184,100,.18), transparent 19%),
    radial-gradient(circle at 82% 63%, rgba(83,170,183,.12), transparent 22%),
    linear-gradient(90deg, rgba(0,0,0,.12), transparent 45%);
  mix-blend-mode: screen;
}

.hero__mist {
  position: absolute;
  right: -12%;
  bottom: -26%;
  width: 75%;
  height: 58%;
  opacity: .28;
  background: radial-gradient(ellipse, rgba(168,185,180,.17), transparent 66%);
  filter: blur(24px);
  animation: mist-drift 11s ease-in-out infinite alternate;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: var(--header-height);
}

.hero__copy {
  max-width: 710px;
  padding-bottom: 2vh;
}

.hero__copy .eyebrow {
  margin-bottom: 25px;
}

.hero h1 {
  color: #f1e6cf;
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.3vw, 92px);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: .055em;
  text-shadow: 0 4px 34px rgba(0,0,0,.45);
}

.hero h1 em {
  color: var(--color-gold-light);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(120,44,43,.7);
  text-decoration-thickness: 10px;
  text-underline-offset: -2px;
  text-decoration-skip-ink: none;
}

.hero__lead {
  margin-top: 30px;
  color: rgba(230,221,200,.8);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .09em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 45px;
}

.hero__status div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: center;
}

.hero__status div + div::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -25px;
  width: 1px;
  background: rgba(230,221,200,.18);
}

.hero__status dt {
  color: var(--color-gold-light);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: .18em;
}

.hero__status dd {
  color: rgba(230,221,200,.67);
  font-size: 11px;
  letter-spacing: .08em;
}

.hero__status strong {
  color: var(--color-paper);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
}

.hero__sign {
  position: relative;
  align-self: flex-start;
  width: 174px;
  margin-top: 15vh;
  padding: 45px 27px 32px;
  border: 1px solid rgba(193,164,103,.36);
  color: #201c16;
  background:
    linear-gradient(rgba(224,210,180,.93), rgba(194,174,132,.94)),
    repeating-linear-gradient(90deg, rgba(55,38,23,.06) 0 1px, transparent 1px 5px);
  box-shadow: 0 25px 50px rgba(0,0,0,.26);
  transform: rotate(1.5deg);
}

.hero__sign::before,
.hero__sign::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(60,43,27,.23);
}

.hero__sign::before { left: 8px; }
.hero__sign::after { right: 8px; }

.hero__sign-knot {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #3f2f1f;
}

.hero__sign-knot::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border: 1px solid #6d5437;
  border-radius: 50%;
}

.hero__sign p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
  min-height: 210px;
  margin-inline: auto;
}

.hero__sign small {
  display: block;
  margin-top: 12px;
  color: #6e5940;
  font-family: var(--font-serif);
  font-size: 10px;
  text-align: center;
  letter-spacing: .12em;
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(230,221,200,.55);
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: .2em;
  transform: translateX(-50%);
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(230,221,200,.18);
}

.hero__scroll i::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: var(--color-gold-light);
  animation: scroll-line 2s ease-in-out infinite;
}

.shop-guide {
  background:
    radial-gradient(circle at 50% 0, rgba(110,102,79,.12), transparent 34%),
    var(--color-ink-900);
}

.shop-guide::before {
  content: "道 具 店";
  position: absolute;
  top: 44px;
  left: 50%;
  color: rgba(230,221,200,.025);
  font-family: var(--font-serif);
  font-size: clamp(90px, 17vw, 240px);
  line-height: 1;
  letter-spacing: .16em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: rgba(184,155,94,.18);
  border: 1px solid rgba(184,155,94,.18);
}

.guide-card {
  position: relative;
  display: block;
  text-decoration: none;
  min-height: 400px;
  padding: 52px 42px 42px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.018), transparent 45%),
    var(--color-ink-850);
  transition: background var(--transition-base), transform var(--transition-base);
}

.guide-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(184,155,94,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(184,155,94,.025), 0 0 0 38px rgba(184,155,94,.02);
  transition: transform var(--transition-base);
}

.guide-card:hover {
  z-index: 2;
  background: #1b1f1d;
  transform: translateY(-8px);
}

.guide-card:hover::after {
  transform: scale(1.18);
}

.guide-card__number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(215,189,123,.18);
  font-family: var(--font-serif);
  font-size: 34px;
}

.guide-card__icon {
  display: grid;
  width: 70px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(215,189,123,.34);
  color: var(--color-gold-light);
  font-family: var(--font-serif);
  font-size: 29px;
  background: rgba(9,11,11,.28);
  box-shadow: inset 0 0 0 5px rgba(215,189,123,.03);
  transform: rotate(-2deg);
}

.guide-card h3 {
  margin-top: 31px;
  color: var(--color-paper);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .08em;
}

.guide-card p {
  margin-top: 17px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 2;
}

.guide-card a,
.guide-card__link {
  position: absolute;
  bottom: 37px;
  left: 42px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--color-gold-light);
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: .12em;
  transition: color var(--transition-base);
}

.guide-card__link span[aria-hidden="true"],
.guide-card a span[aria-hidden="true"] {
  display: inline-block;
  transition: transform var(--transition-base);
}

.guide-card:hover .guide-card__link,
.guide-card:hover a {
  color: #edd79d;
}

.guide-card:hover .guide-card__link span[aria-hidden="true"],
.guide-card:hover a span[aria-hidden="true"] {
  transform: translate(2px, -2px);
}

.featured-tools {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(230,221,200,.035) 50%, transparent 50.2%),
    #0c0f0f;
}

.featured-tools::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(184,155,94,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(184,155,94,.018), 0 0 0 85px rgba(184,155,94,.012);
}

.tool-showcase {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.tool-pick {
  position: relative;
  display: grid;
  min-height: 265px;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 28px;
  padding: 36px 42px;
  overflow: hidden;
  border: 1px solid rgba(184,155,94,.16);
  background:
    radial-gradient(circle at 25% 45%, rgba(184,155,94,.07), transparent 32%),
    linear-gradient(135deg, #171a18, #111413);
  transition: border-color var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

.tool-pick::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -40%;
  width: 30%;
  height: 300%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transform: rotate(18deg);
  transition: left 700ms ease, opacity 300ms ease;
}

.tool-pick:hover {
  border-color: rgba(215,189,123,.4);
  transform: translateY(-4px);
}

.tool-pick:hover::before {
  left: 120%;
  opacity: 1;
}

.tool-pick--large {
  grid-row: 1 / span 2;
  min-height: 548px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  padding: 48px 52px;
  background:
    radial-gradient(circle at 50% 39%, rgba(132,52,46,.16), transparent 30%),
    radial-gradient(circle at 50% 39%, rgba(184,155,94,.08), transparent 55%),
    linear-gradient(145deg, #1b1c1a, #101312);
}

.tool-pick__meta {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.tool-pick__meta span {
  padding: 5px 9px;
  border: 1px solid rgba(215,189,123,.26);
  color: rgba(230,221,200,.7);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .13em;
}

.tool-pick__badge--new {
  color: rgba(230, 221, 200, 0.9);
  background: #6f3430;
  border-color: rgba(120, 44, 43, 0.6);
}

.tool-pick__mark {
  display: grid;
  width: 112px;
  height: 124px;
  place-items: center;
  border: 1px solid rgba(215,189,123,.28);
  color: var(--color-gold-light);
  background: rgba(6,8,8,.26);
  font-family: var(--font-serif);
  font-size: 45px;
  box-shadow: inset 0 0 0 7px rgba(215,189,123,.025);
}

.tool-pick--large .tool-pick__mark {
  align-self: center;
  justify-self: center;
  width: 180px;
  height: 200px;
  margin-top: 55px;
  font-size: 76px;
  transform: rotate(-2deg);
}

.tool-pick__mark--rings {
  position: relative;
  border: 0;
  box-shadow: none;
  background: none;
}

.tool-pick__mark--rings b {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}

.tool-pick__mark--rings b:nth-child(1) { transform: translate(-18px, -12px); background: rgba(120,44,43,.25); }
.tool-pick__mark--rings b:nth-child(2) { transform: translate(18px, -12px); background: rgba(83,170,183,.16); }
.tool-pick__mark--rings b:nth-child(3) { transform: translate(0, 18px); background: rgba(215,189,123,.14); }

.tool-pick__body p {
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.tool-pick__body h3 {
  margin-top: 7px;
  color: var(--color-paper);
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: .08em;
}

.tool-pick--large .tool-pick__body h3 {
  font-size: 39px;
}

.tool-pick__body span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.8;
}

.tool-pick__arrow {
  position: absolute;
  right: 25px;
  bottom: 22px;
  color: var(--color-gold-light);
  font-style: normal;
  font-size: 19px;
  transition: transform var(--transition-base);
}

.tool-pick:hover .tool-pick__arrow {
  transform: translate(4px, -4px);
}

.section-cta {
  margin-top: 46px;
  text-align: center;
}

.keeper {
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 48%, rgba(229,221,200,.05), transparent 38%),
    linear-gradient(90deg, #111413 0 48%, #171816 48% 100%);
}

.keeper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 1px;
  background: rgba(184,155,94,.11);
}

.keeper__ink {
  position: absolute;
  top: 15%;
  left: 43%;
  width: 270px;
  height: 270px;
  border-radius: 44% 56% 53% 47% / 46% 38% 62% 54%;
  opacity: .08;
  background: #040505;
  filter: blur(6px);
  transform: rotate(12deg);
}

.keeper__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.keeper__visual {
  position: relative;
  align-self: end;
  height: 650px;
}

.keeper__visual::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 3%;
  left: 3%;
  height: 70px;
  background: radial-gradient(ellipse, rgba(0,0,0,.65), transparent 70%);
  filter: blur(15px);
}

.keeper__visual img {
  position: absolute;
  right: -3%;
  bottom: -132px;
  width: min(580px, 115%);
  max-width: none;
  filter: sepia(.12) contrast(1.08) brightness(.86);
}

.keeper__copy {
  max-width: 500px;
  padding-block: 56px;
}

.keeper__copy h2 {
  margin-top: 20px;
  color: var(--color-paper);
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: .08em;
}

.keeper__copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 2.15;
}

.keeper__copy blockquote {
  margin: 34px 0 30px;
  padding: 20px 24px;
  border-left: 1px solid var(--color-red-light);
  color: var(--color-gold-light);
  background: rgba(0,0,0,.12);
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: .08em;
}

.news {
  background: var(--color-ink-900);
}

.news__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 46px;
}

.news-list {
  border-top: 1px solid rgba(184,155,94,.22);
}

.news-list a {
  display: grid;
  grid-template-columns: 125px 60px 1fr 30px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(230,221,200,.09);
  transition: background var(--transition-fast), padding var(--transition-base);
}

.news-list a:hover {
  padding-inline: 18px;
  background: rgba(230,221,200,.025);
}

.news-list time {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: .08em;
}

.news-list__tag {
  padding: 5px 8px;
  border: 1px solid rgba(184,155,94,.26);
  color: var(--color-gold-light);
  font-size: 9px;
  line-height: 1;
  text-align: center;
  letter-spacing: .12em;
}

.news-list__tag--new {
  color: rgba(230, 221, 200, 0.9);
  background: #6f3430;
  border-color: rgba(120, 44, 43, 0.6);
}

.news-list strong {
  color: rgba(230,221,200,.84);
  font-size: 13px;
  font-weight: 500;
}

.news-list i {
  color: var(--color-gold-light);
  font-style: normal;
  transition: transform var(--transition-base);
}

.news-list a:hover i {
  transform: translateX(6px);
}

.closing-banner {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(7,9,9,.65), rgba(7,9,9,.88)),
    url("../img/akanekoza-night.webp") center 31% / cover;
  text-align: center;
}

.closing-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(215,189,123,.12), transparent 34%);
}

.closing-banner__moon {
  position: absolute;
  top: 68px;
  left: 50%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  opacity: .12;
  background: #e2c681;
  filter: blur(1px);
  transform: translateX(-50%);
  box-shadow: 0 0 55px rgba(226,198,129,.25);
}

.closing-banner__inner {
  position: relative;
  z-index: 2;
  padding-block: 90px;
}

.closing-banner .eyebrow {
  justify-content: center;
}

.closing-banner h2 {
  margin: 22px 0 38px;
  color: var(--color-paper);
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: .09em;
}

@keyframes hero-breathe {
  from { transform: scale(1.035) translate3d(0,0,0); }
  to { transform: scale(1.07) translate3d(-.5%, -.35%, 0); }
}

@keyframes mist-drift {
  from { transform: translateX(-2%) scale(1); }
  to { transform: translateX(8%) scale(1.12); }
}

@keyframes scroll-line {
  0% { transform: translateY(-120%); }
  55%, 100% { transform: translateY(260%); }
}

@media (max-width: 1080px) {
  .hero__sign {
    display: none;
  }

  .tool-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .tool-pick--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 760px;
  }

  .hero__backdrop {
    background-image:
      linear-gradient(90deg, rgba(7,9,9,.96) 0%, rgba(7,9,9,.72) 60%, rgba(7,9,9,.35) 100%),
      linear-gradient(180deg, rgba(7,9,9,.1), rgba(7,9,9,.92)),
      url("../img/akanekoza-night.webp");
    background-position: center, center, 58% center;
  }

  .hero__copy {
    max-width: 650px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 320px;
  }

  .keeper {
    background: #131614;
  }

  .keeper::before {
    display: none;
  }

  .keeper__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .keeper__visual {
    order: 2;
    height: 470px;
    margin-top: -20px;
  }

  .keeper__visual img {
    right: 50%;
    bottom: -155px;
    width: min(560px, 105vw);
    transform: translateX(50%);
  }

  .keeper__copy {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(43px, 12vw, 65px);
  }

  .hero__lead br {
    display: none;
  }

  .hero__status {
    display: grid;
    gap: 13px;
  }

  .hero__status div + div::before {
    display: none;
  }

  .tool-showcase {
    grid-template-columns: 1fr;
  }

  .tool-pick,
  .tool-pick--large {
    grid-column: auto;
    min-height: 310px;
    grid-template-columns: 105px 1fr;
    grid-template-rows: 1fr;
    padding: 55px 28px 32px;
  }

  .tool-pick--large .tool-pick__mark {
    width: 105px;
    height: 118px;
    margin-top: 0;
    font-size: 49px;
  }

  .tool-pick--large .tool-pick__body h3 {
    font-size: 31px;
  }

  .news__heading {
    display: block;
  }

  .news__heading > p {
    margin-top: 18px;
  }

  .news-list a {
    grid-template-columns: 92px 48px 1fr;
    gap: 12px;
    padding-block: 20px;
  }

  .news-list i {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 720px;
    height: auto;
  }

  .hero__inner {
    min-height: 720px;
    padding-block: calc(var(--header-height) + 60px) 90px;
  }

  .hero__backdrop {
    background-image:
      linear-gradient(90deg, rgba(7,9,9,.94), rgba(7,9,9,.58)),
      linear-gradient(180deg, rgba(7,9,9,.12), rgba(7,9,9,.94)),
      url("../img/akanekoza-night.webp");
    background-position: center, center, 55% center;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .guide-card {
    min-height: 350px;
    padding: 44px 30px 36px;
  }

  .guide-card a,
  .guide-card__link {
    left: 30px;
  }

  .tool-pick,
  .tool-pick--large {
    display: block;
    min-height: 355px;
  }

  .tool-pick__mark,
  .tool-pick--large .tool-pick__mark {
    width: 90px;
    height: 100px;
    margin-bottom: 28px;
  }

  .news-list a {
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
  }

  .news-list time {
    grid-column: 1;
  }

  .news-list__tag {
    grid-column: 2;
    grid-row: 1;
  }

  .news-list strong {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   道具屋日誌（TOPページ新着ブログセクション）
   ========================================================================== */
.journal-feed {
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 155, 94, 0.05), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(83, 170, 183, 0.04), transparent 40%);
}

.journal-feed__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.journal-feed__card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  background: var(--color-ink-850);
  border: 1px solid rgba(184, 155, 94, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.journal-feed__card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 189, 123, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(184, 155, 94, 0.12);
}

.journal-feed__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.journal-feed__cat {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(184, 155, 94, 0.12);
  border: 1px solid rgba(184, 155, 94, 0.25);
  border-radius: var(--radius-sm);
  color: var(--color-gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.journal-feed__meta time {
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.journal-feed__title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.journal-feed__title a {
  color: var(--color-paper);
  text-decoration: none;
  transition: color 0.2s;
}

.journal-feed__title a:hover {
  color: var(--color-gold-light);
}

.journal-feed__excerpt {
  margin: 0 0 24px;
  color: var(--color-muted);
  font-size: 13.5px;
  line-height: 1.85;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.journal-feed__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 155, 94, 0.12);
  flex-wrap: wrap;
}

.journal-feed__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold-light);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}

.journal-feed__link:hover {
  color: var(--color-paper);
  transform: translateX(3px);
}

.journal-feed__tool-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(184, 155, 94, 0.08);
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-paper);
  text-decoration: none;
  font-size: 12px;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.journal-feed__tool-link:hover {
  background: rgba(184, 155, 94, 0.2);
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

.journal-feed__tool-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.journal-feed__tool-name {
  font-weight: 600;
  color: var(--color-paper);
}

.journal-feed__tool-link i {
  font-size: 11px;
  color: var(--color-gold-light);
}

@media (max-width: 860px) {
  .journal-feed__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .journal-feed__card {
    padding: 24px 20px;
  }
}

