/* 100年経営通信 — static preview styles (mirrors theme tokens) */
:root {
  --bg: #faf9f7;
  --fg: #1a1a1a;
  --accent: #8B6F5C;
  --muted: #6b7280;
  --border: #e8e6e1;
  --surface: #ffffff;
  --hero: #f3f1ed;
  --content: 42rem;
  --wide: 72rem;
  --font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", YuGothic, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--fg);
  opacity: 0.9;
}

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

.wrap {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}

/* Sample banner */
.sample-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.45rem 1rem;
}

.sample-banner a {
  color: #fff;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 1.5rem 0;
}

.site-header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
}

.site-brand-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
}

.site-title {
  margin: 0.15rem 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.site-title a {
  color: var(--accent);
  text-decoration: none;
}

.site-tagline {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.site-nav a {
  text-decoration: none;
  color: var(--fg);
}

.site-nav a:hover {
  color: var(--accent);
}

.official-link a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.1em;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
}

.official-link a:hover {
  border-bottom-color: var(--accent);
}

/* Hero */
.home-hero {
  position: relative;
  background: var(--hero);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 1rem 4.5rem;
  text-align: center;
}

.home-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.home-hero-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.home-hero-intro {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  line-height: 1.9;
}

/* Sections */
.section {
  padding: 3.5rem 0 2rem;
}

.section-cta {
  padding: 1.5rem 0 4.5rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.section-heading::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  flex-shrink: 0;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.03);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.post-card:hover {
  border-color: #cfcabe;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.06);
}

.post-card-cat {
  margin: 0;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.post-card-title {
  margin: 0.4rem 0 0.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.post-card-title a {
  color: var(--fg);
  text-decoration: none;
}

.post-card-title a:hover {
  color: var(--accent);
}

.post-card-date {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.post-card-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.post-card-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.sample-mark {
  display: inline-block;
  margin-left: 0.4em;
  padding: 0.1em 0.45em;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--hero);
  border: 1px solid var(--border);
  border-radius: 2px;
  vertical-align: middle;
}

/* Category chips */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-chip {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.category-chip:hover {
  background: var(--hero);
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

/* CTA */
.cta-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 1.75rem 1.75rem 1.6rem;
}

.cta-panel p {
  margin: 0 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff !important;
  background: var(--accent);
  border: none;
  border-radius: 2px;
  text-decoration: none !important;
}

.btn:hover {
  opacity: 0.9;
  color: #fff !important;
}

.note-placeholder {
  margin: 1.25rem 0 0 !important;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

/* Article */
.article-main {
  padding: 4rem 0 4.5rem;
}

.article-cat {
  margin: 0;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.article-title {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.article-lead {
  font-size: 1.0625rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #3f4650;
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
  margin: 0 0 2rem;
}

.article-body p {
  line-height: 1.95;
  letter-spacing: 0.03em;
  margin: 0 0 1.35em;
}

.article-body h2 {
  margin: 2.75em 0 0.85em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--border);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

.article-body h3 {
  margin: 2.1em 0 0.55em;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.article-tags {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
}

.article-tags a {
  margin-right: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--hero);
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding: 3rem 0;
}

.org-name {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--accent);
}

.org-address {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.site-footer-nav {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.site-footer-copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.preview-nav-note {
  text-align: center;
  padding: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  border-top: 1px dashed var(--border);
  background: var(--surface);
}

/* ========== Home v2 — refined editorial ========== */
:root {
  --ink: #1c1917;
  --hero-dark: #1a1614;
  --accent-soft: #c4a994;
  --serif: "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", serif;
}

.page-home {
  --fg: var(--ink);
}

.site-header--refined {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.85rem 0;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.brand-media-name {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  border-left: 1px solid var(--border);
  padding-left: 1rem;
}

.site-header--refined .site-nav a {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.site-header--refined .site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.45rem 0.9rem !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
  border-radius: 999px;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

/* Dark editorial hero */
.hero-editorial {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% 10%, rgba(139, 111, 92, 0.22), transparent 55%),
    linear-gradient(160deg, #221e1b 0%, var(--hero-dark) 55%, #12100f 100%);
  color: #f5f0eb;
  padding: 6.5rem 0 5.5rem;
  border-bottom: none;
}

.hero-editorial-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.hero-eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  color: var(--accent-soft);
  font-weight: 500;
}

.hero-editorial h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: #faf7f4;
}

.hero-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--accent-soft);
  margin: 1.75rem 0 1.5rem;
}

.hero-lead {
  margin: 0;
  max-width: 32rem;
  color: rgba(245, 240, 235, 0.72);
  font-size: 0.975rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.btn--ghost {
  background: transparent !important;
  color: #faf7f4 !important;
  border: 1px solid rgba(245, 240, 235, 0.45);
}

.btn--ghost:hover {
  border-color: var(--accent-soft);
  color: #fff !important;
  background: rgba(139, 111, 92, 0.25) !important;
}

.hero-secondary {
  color: var(--accent-soft);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.hero-secondary:hover {
  color: #fff;
}

.hero-mark {
  position: absolute;
  right: -2rem;
  bottom: -3.5rem;
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 16rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(196, 169, 148, 0.07);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

/* Featured */
.section--featured {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
}

.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 2.25rem 2.25rem 2rem;
  box-shadow: 0 18px 40px rgba(28, 25, 23, 0.04);
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.featured-label {
  color: #fff;
  background: var(--accent);
  padding: 0.25rem 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.featured-cat {
  color: var(--accent);
  font-weight: 500;
}

.featured-date {
  color: var(--muted);
}

.featured-title {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.featured-title a {
  color: var(--ink);
  text-decoration: none;
}

.featured-title a:hover {
  color: var(--accent);
}

.featured-excerpt {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

.featured-more {
  display: inline-block;
  margin-top: 1.35rem;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--accent);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.section-heading--plain {
  margin: 0;
  border: none;
  padding: 0;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.section-heading--plain::before {
  display: none;
}

.section-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--muted);
}

.section-link:hover {
  color: var(--accent);
}

.card-grid--editorial {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .card-grid--editorial {
    grid-template-columns: 1fr;
  }
}

.post-card--editorial {
  padding: 1.75rem 1.5rem 1.5rem;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.post-card--editorial:hover {
  border-color: var(--accent);
  box-shadow: none;
}

.post-card--editorial .post-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.section--cats {
  padding-top: 1rem;
}

.category-nav--editorial {
  gap: 0.65rem;
}

.category-nav--editorial .category-chip {
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  background: transparent;
  color: var(--ink);
}

.category-nav--editorial .category-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cta-panel--editorial {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  align-items: end;
  border: none;
  border-left: none;
  background: var(--hero-dark);
  color: rgba(245, 240, 235, 0.85);
  padding: 2.5rem 2.25rem;
}

.cta-kicker {
  margin: 0 0 0.5rem !important;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  color: var(--accent-soft);
}

.cta-title {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: #faf7f4;
  font-weight: 600;
}

.cta-panel--editorial p {
  color: rgba(245, 240, 235, 0.7);
}

.cta-panel--editorial .note-placeholder {
  color: rgba(245, 240, 235, 0.45) !important;
}

.cta-panel--editorial .btn {
  background: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-media-name {
    display: none;
  }
  .hero-editorial {
    padding: 4.5rem 0 4rem;
  }
}

.site-footer--refined .site-footer-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-footer--refined .site-footer-nav a:hover {
  color: var(--accent);
}

/* ========== Home v3 — bright + motion ========== */
.page-home--bright {
  --bg: #fbf8f4;
}

.hero-bright {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, #fbf8f4 0%, #f3ebe3 42%, #efe4d8 100%);
  border-bottom: 1px solid rgba(139, 111, 92, 0.12);
}

.hero-bright-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: floaty 9s ease-in-out infinite;
}

.orb-a {
  width: 28rem;
  height: 28rem;
  right: -6rem;
  top: -8rem;
  background: radial-gradient(circle, rgba(196, 169, 148, 0.55), rgba(196, 169, 148, 0) 70%);
}

.orb-b {
  width: 18rem;
  height: 18rem;
  left: 8%;
  bottom: -6rem;
  background: radial-gradient(circle, rgba(139, 111, 92, 0.18), rgba(139, 111, 92, 0) 70%);
  animation-delay: -3s;
}

.orb-c {
  width: 10rem;
  height: 10rem;
  right: 28%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 70%);
  animation-delay: -5s;
}

.grid-fade {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(139, 111, 92, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 111, 92, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 70%);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

.hero-bright-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-bright-grid {
    grid-template-columns: 1fr;
  }
}

.hero-eyebrow--bright {
  color: var(--accent);
}

.hero-bright h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.28;
  color: var(--ink);
}

.hero-bright h1 em {
  font-style: normal;
  color: var(--accent);
  background: linear-gradient(120deg, transparent 0%, rgba(196, 169, 148, 0.28) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: sheen 4.5s ease-in-out infinite;
  padding: 0 0.1em;
}

@keyframes sheen {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}

.hero-lead--bright {
  margin: 1.35rem 0 0;
  color: #6a625c;
  font-size: 0.975rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.hero-secondary--dark {
  color: var(--accent);
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.75rem 1.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 111, 92, 0.18);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(139, 111, 92, 0.12);
  text-decoration: none;
  transform: rotate(1.2deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(8px);
}

.spotlight-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 28px 60px rgba(139, 111, 92, 0.18);
  opacity: 1;
}

.spotlight-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.spotlight-cat {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.spotlight-title {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.spotlight-date {
  color: var(--muted);
  font-size: 0.8125rem;
}

.spotlight-go {
  margin-top: 0.35rem;
  color: var(--accent);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

/* scrolling category marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(139, 111, 92, 0.12);
  background: #fff;
  padding: 0.7rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  font-weight: 600;
}

.marquee-track span::after {
  content: " · ";
  margin-left: 2.5rem;
  opacity: 0.45;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.featured-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(139, 111, 92, 0.14);
  background: #fff;
  box-shadow: 0 18px 40px rgba(139, 111, 92, 0.08);
}

@media (max-width: 800px) {
  .featured-split {
    grid-template-columns: 1fr;
  }
}

.featured-visual {
  background:
    linear-gradient(160deg, rgba(139, 111, 92, 0.92), rgba(168, 136, 112, 0.85)),
    repeating-linear-gradient(-35deg, transparent, transparent 12px, rgba(255,255,255,0.06) 12px, rgba(255,255,255,0.06) 13px);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.featured-visual-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fv-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

.fv-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  opacity: 0.85;
}

.featured-body {
  padding: 2rem 2rem 1.75rem;
}

.card-grid--motion {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .card-grid--motion {
    grid-template-columns: 1fr;
  }
}

.post-card--lift {
  background: #fff;
  border: 1px solid rgba(139, 111, 92, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(139, 111, 92, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.post-card--lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(139, 111, 92, 0.14);
  border-color: rgba(139, 111, 92, 0.35);
}

.post-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.post-card-index {
  font-family: var(--serif);
  color: rgba(139, 111, 92, 0.35);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.post-card--lift .post-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.cta-panel--bright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  align-items: end;
  border: 1px solid rgba(139, 111, 92, 0.16);
  border-left: none;
  border-radius: 20px;
  background:
    linear-gradient(120deg, #fff 0%, #f7efe7 55%, #f0e4d8 100%);
  padding: 2.25rem;
  box-shadow: 0 16px 36px rgba(139, 111, 92, 0.08);
}

.cta-kicker--dark {
  color: var(--accent) !important;
}

.cta-title--dark {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.cta-panel--bright p {
  color: #6a625c;
  margin: 0;
}

/* ========== Official gold accent + motto hero ========== */
:root {
  --gold: #D2A54C;          /* 公式HP style.css より */
  --gold-soft: #E8C97A;
  --taupe-official: #A78775;
}

.page-home--bright .btn {
  background: var(--gold);
  color: #1c1917 !important;
}

.page-home--bright .btn:hover {
  background: #c4963a;
}

.page-home--bright .nav-cta {
  border-color: var(--gold) !important;
  color: #8a6d2e !important;
}

.page-home--bright .nav-cta:hover {
  background: var(--gold) !important;
  color: #1c1917 !important;
}

.gold-em {
  color: var(--gold) !important;
  background: linear-gradient(120deg, transparent 0%, rgba(210, 165, 76, 0.28) 50%, transparent 100%) !important;
  background-size: 200% 100% !important;
}

.hero-bright-grid {
  grid-template-columns: 1.05fr 1fr;
}

.hero-motto-field {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 30%, rgba(210, 165, 76, 0.28), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(167, 135, 117, 0.18), transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,0.65), rgba(255,248,235,0.4));
  border: 1px solid rgba(210, 165, 76, 0.28);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5), 0 18px 40px rgba(167, 135, 117, 0.1);
}

.motto {
  position: absolute;
  font-family: var(--serif);
  letter-spacing: 0.18em;
  white-space: nowrap;
  color: rgba(94, 75, 63, 0.55);
  animation: mottoFloat 7.5s ease-in-out infinite;
  user-select: none;
}

.motto.m1 {
  top: 14%;
  left: 10%;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: rgba(210, 165, 76, 0.95);
  animation-duration: 8s;
}

.motto.m2 {
  top: 38%;
  right: 8%;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  color: rgba(139, 111, 92, 0.75);
  animation-delay: -2s;
  animation-duration: 9s;
}

.motto.m3 {
  top: 58%;
  left: 16%;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: rgba(210, 165, 76, 0.8);
  animation-delay: -4s;
  animation-duration: 7s;
}

.motto.m4 {
  bottom: 12%;
  left: 8%;
  right: 8%;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  letter-spacing: 0.12em;
  color: rgba(94, 75, 63, 0.7);
  animation-delay: -1.5s;
  animation-duration: 10s;
  white-space: normal;
  text-align: center;
}

.motto.m5 {
  top: 22%;
  right: 18%;
  font-size: 1rem;
  opacity: 0.35;
  animation-delay: -5s;
}

.motto.m6 {
  bottom: 28%;
  right: 14%;
  font-size: 0.95rem;
  opacity: 0.3;
  animation-delay: -3.2s;
}

@keyframes mottoFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.55; filter: blur(0); }
  40% { transform: translateY(-14px) translateX(6px); opacity: 1; }
  70% { transform: translateY(8px) translateX(-4px); opacity: 0.7; filter: blur(0.2px); }
}

.marquee--motto {
  background: linear-gradient(90deg, #fff8e8, #fff, #fff8e8);
  border-block-color: rgba(210, 165, 76, 0.28);
}

.marquee--motto .marquee-track {
  color: var(--gold);
  font-family: var(--serif);
  letter-spacing: 0.22em;
  font-size: 0.9rem;
  font-weight: 600;
}

.featured-label {
  background: var(--gold);
  color: #1c1917;
}

.featured-visual {
  background:
    linear-gradient(160deg, rgba(210, 165, 76, 0.95), rgba(167, 135, 117, 0.88)),
    repeating-linear-gradient(-35deg, transparent, transparent 12px, rgba(255,255,255,0.08) 12px, rgba(255,255,255,0.08) 13px);
}

.category-nav--editorial .category-chip:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1c1917;
}

.sample-banner {
  background: linear-gradient(90deg, var(--taupe-official), var(--gold));
}

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


/* motto field: no enclosing rectangle */
.hero-motto-field {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.hero-bright-grid {
  align-items: stretch;
}

/* cycling motto — soft fade */
.motto-cycle {
  position: absolute;
  font-family: var(--serif);
  letter-spacing: 0.18em;
  color: rgba(94, 75, 63, 0.55);
  opacity: 0;
  transform: translateY(6px) scale(0.985);
  filter: blur(2.5px);
  transition:
    opacity 1.15s ease,
    transform 1.15s ease,
    filter 1.15s ease,
    color 1.15s ease;
  max-width: 92%;
  line-height: 1.35;
  will-change: opacity, transform, filter;
}
.motto-cycle.is-in {
  opacity: 0.92;
  transform: translateY(0) scale(1);
  filter: blur(0);
  color: rgba(210, 165, 76, 0.98);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}
.motto-cycle.is-out {
  opacity: 0;
  transform: translateY(-4px) scale(1.01);
  filter: blur(3px);
  color: rgba(94, 75, 63, 0.2);
}

/* denser marquee with many mottos */
.marquee--motto .marquee-track {
  gap: 2rem;
  animation-duration: 48s;
}
.marquee--motto.is-hidden {
  display: none;
}


/* nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 2px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 12.5rem;
  margin: 0;
  padding: 0.85rem 0 0.45rem; /* top padding = hover bridge */
  list-style: none;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* close slowly after mouse leaves */
  transition: opacity 0.35s ease 0.65s, transform 0.35s ease 0.65s, visibility 0s linear 1s;
  z-index: 40;
}
.nav-dropdown-menu::before {
  content: "";
  display: block;
  height: 0.85rem; /* invisible bridge under trigger */
}
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0.85rem;
  bottom: 0;
  background: #fff;
  border: 1px solid rgba(139, 111, 92, 0.18);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(94, 75, 63, 0.12);
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s; /* open immediately */
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--ink, #1c1917) !important;
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: #f7efe7;
  color: var(--accent) !important;
}
.nav-dropdown-menu li:first-child a {
  font-weight: 600;
  color: var(--gold, #D2A54C) !important;
  border-bottom: 1px solid rgba(139, 111, 92, 0.1);
  margin-bottom: 0.2rem;
  padding-bottom: 0.65rem;
}

/* category pages */
.cat-page-hero {
  padding: 3.25rem 0 1.5rem;
  background: linear-gradient(135deg, #fbf8f4, #f3ebe3);
  border-bottom: 1px solid rgba(139, 111, 92, 0.1);
}
.cat-page-hero h1 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
}
.cat-page-lead {
  margin: 0;
  max-width: 36rem;
  color: #6a625c;
  line-height: 1.9;
}
.cat-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .cat-hub-grid { grid-template-columns: 1fr; }
}
.cat-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.4rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(139, 111, 92, 0.14);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cat-hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(139, 111, 92, 0.12);
  border-color: rgba(210, 165, 76, 0.55);
  opacity: 1;
}
.cat-hub-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--ink, #1c1917);
  font-weight: 600;
}
.cat-hub-desc {
  color: #6a625c;
  font-size: 0.875rem;
  line-height: 1.75;
  flex: 1;
}
.cat-hub-go {
  color: var(--gold, #D2A54C);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}


/* ========== article page v2 — refined ========== */
body.page-article {
  --fg: #2a2623;
  background: #fbf8f4;
  font-size: 0.9375rem;
}

.page-article .article-main {
  padding: 2.75rem 0 4rem;
}

.page-article .article-shell {
  width: min(100% - 2rem, 38rem);
  margin-inline: auto;
}

.page-article .article-cat {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold, #D2A54C);
  font-weight: 600;
}

.page-article .article-title {
  margin: 0.65rem 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: #1c1917;
}

.page-article .article-meta {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 111, 92, 0.14);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #8a827a;
  gap: 0.5rem 1rem;
}

.page-article .article-lead {
  font-size: 0.95rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: #4a443f;
  border-left: 2px solid var(--gold, #D2A54C);
  padding-left: 1rem;
  margin: 0 0 2rem;
}

.page-article .article-body {
  font-size: 0.9rem;
  line-height: 2.05;
  letter-spacing: 0.03em;
  color: #3a3531;
}

.page-article .article-body p {
  margin: 0 0 1.25em;
  line-height: 2.05;
  font-size: inherit;
}

.page-article .article-body h2 {
  margin: 2.4em 0 0.7em;
  padding: 0;
  border: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #1c1917;
  position: relative;
}

.page-article .article-body h2::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  margin-top: 0.55rem;
  background: var(--gold, #D2A54C);
}

.page-article .article-body h3 {
  margin: 1.8em 0 0.5em;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  color: #5c5148;
}

.page-article .article-tags {
  margin: 2.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(139, 111, 92, 0.14);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #8a827a;
}

.page-article .article-tags a {
  display: inline-block;
  margin: 0.25rem 0.35rem 0 0;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 111, 92, 0.2);
  text-decoration: none;
  color: #6a625c;
  background: #fff;
}

.page-article .article-tags a:hover {
  border-color: var(--gold, #D2A54C);
  color: #8a6d2e;
}

/* author / writer profile below tags */
.author-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem 1.15rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(139, 111, 92, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(139, 111, 92, 0.06);
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(210,165,76,0.35), rgba(167,135,117,0.45)),
    #efe4d8;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #5c5148;
}

.author-label {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold, #D2A54C);
  font-weight: 600;
}

.author-name {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #1c1917;
  font-weight: 600;
}

.author-role {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  color: #8a827a;
  letter-spacing: 0.04em;
}

.author-bio {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: #5c564f;
}

.author-links {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.author-links a {
  color: var(--accent);
  text-decoration: none;
  margin-right: 0.85rem;
}

.page-article .article-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.2rem;
  background: linear-gradient(120deg, #fff, #f7efe7);
  border: 1px solid rgba(139, 111, 92, 0.14);
  border-radius: 14px;
  border-left: 3px solid var(--gold, #D2A54C);
  font-size: 0.85rem;
  line-height: 1.85;
  color: #5c564f;
}

.page-article .article-cta strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  letter-spacing: 0.08em;
  color: #1c1917;
}

@media (max-width: 560px) {
  .author-card {
    grid-template-columns: 56px 1fr;
  }
  .author-avatar {
    width: 56px;
    height: 56px;
    font-size: 0.95rem;
  }
}


/* nav sitemap denser */
.site-header--refined .site-nav {
  gap: 0.85rem 1.05rem;
}
.site-header--refined .site-nav > a,
.site-header--refined .nav-dropdown-trigger {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
}
@media (max-width: 960px) {
  .brand-media-name { display: none; }
}


/* eyecatch frames */
.hero-eyecatch {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 18px 40px rgba(94, 75, 63, 0.12);
}
.hero-eyecatch-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.hero-motto-field--overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(28,25,23,0.15), rgba(28,25,23,0.05) 40%, transparent 70%);
}
.hero-motto-field--overlay .motto-cycle.is-in {
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.eyecatch-cap {
  position: absolute;
  left: 0.85rem;
  bottom: 0.65rem;
  margin: 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(28,25,23,0.45);
  border-radius: 6px;
}
.featured-visual--photo {
  position: relative;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  background: #333;
  aspect-ratio: 4 / 3;
}
.featured-visual--photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}
@media (min-width: 801px) {
  .featured-visual--photo {
    aspect-ratio: auto;
    min-height: 180px;
  }
}
.featured-visual--photo .featured-visual-inner {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.post-card-media {
  margin: -0.15rem -0.15rem 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  background: #f3ebe3;
  aspect-ratio: 4 / 3;
}
.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card-media--logo {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(139,111,92,0.1);
  aspect-ratio: 4 / 3;
}
.post-card-media--logo img {
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 72%;
  object-fit: contain;
}
.series-eyecatch {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(139,111,92,0.14);
  text-decoration: none;
  background: #fff;
  box-shadow: 0 14px 32px rgba(139,111,92,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.series-eyecatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(139,111,92,0.14);
  opacity: 1;
}
.series-eyecatch img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}
.series-eyecatch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.5rem 1.4rem;
}
.series-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold, #D2A54C);
  font-weight: 700;
}
.series-eyecatch-copy strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: #1c1917;
}
.series-eyecatch-copy span:last-child {
  font-size: 0.82rem;
  color: #6a625c;
  line-height: 1.7;
}
@media (max-width: 800px) {
  .series-eyecatch { grid-template-columns: 1fr; }
}


/* eyecatch size trim (desktop) */
@media (min-width: 801px) {
.featured-visual--photo {
  min-height: 180px !important;
  max-height: 220px;
}
.featured-visual--photo img {
  min-height: 180px !important;
  max-height: 220px;
  object-fit: cover;
}
.featured-split {
  grid-template-columns: 0.55fr 1.45fr !important;
}
}
.post-card-media {
  aspect-ratio: 4 / 3 !important;
  margin-bottom: 0.7rem !important;
  border-radius: 10px !important;
}
.post-card-media--logo {
  aspect-ratio: 4 / 3 !important;
  padding: 0.85rem !important;
}
.post-card-media--logo img {
  max-width: 55% !important;
  max-height: 65% !important;
}
.series-eyecatch {
  grid-template-columns: 0.9fr 1.1fr !important;
  max-height: 168px;
}
.series-eyecatch img {
  min-height: 0 !important;
  height: 168px !important;
  object-fit: cover;
}
.series-eyecatch-copy {
  padding: 1rem 1.15rem !important;
}
.series-eyecatch-copy strong {
  font-size: 1.05rem !important;
}
@media (max-width: 800px) {
  .series-eyecatch { max-height: none; }
  .series-eyecatch img { height: 140px !important; }
  .featured-split { grid-template-columns: 1fr !important; }
}


/* feature series redesign */
.featured-split {
  display: grid !important;
  grid-template-columns: minmax(220px, 0.9fr) 1.3fr !important;
  align-items: stretch !important;
}
.featured-visual--photo {
  min-height: 0 !important;
  max-height: none !important;
  height: 100% !important;
  align-self: stretch;
  display: flex;
  background: #2a2623;
}
.featured-visual--photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block;
  flex: 1;
}
.featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.series-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.series-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(139,111,92,0.14);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(139,111,92,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.series-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(139,111,92,0.12);
  opacity: 1;
}
.series-card-thumb {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3ebe3;
  flex-shrink: 0;
}
.series-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.series-card-thumb--logo {
  display: grid;
  place-items: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(139,111,92,0.1);
}
.series-card-thumb--logo img {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}
.series-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  padding-right: 0.35rem;
}
.series-card-body strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #1c1917;
  line-height: 1.4;
}
.series-card-meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold, #D2A54C);
}
.series-card-desc {
  font-size: 0.8rem;
  color: #6a625c;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .featured-split { grid-template-columns: 1fr !important; }
  .featured-visual--photo { min-height: 0 !important; aspect-ratio: 4 / 3 !important; height: auto !important; max-height: none !important; }
  .featured-visual--photo img { min-height: 0 !important; max-height: none !important; height: 100% !important; width: 100% !important; object-fit: cover !important; }
  .series-card-grid { grid-template-columns: 1fr; }
  .series-card { grid-template-columns: 112px 1fr; }
  .series-card-thumb { width: 112px; height: 112px; }
}


/* feature half height (desktop) */
@media (min-width: 801px) {
.featured-split {
  max-height: 180px;
}
.featured-visual--photo,
.featured-visual--photo img {
  max-height: 180px !important;
  min-height: 0 !important;
}
}
.featured-body {
  padding: 1rem 1.25rem 1rem !important;
  justify-content: center;
}
.featured-title {
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  margin-bottom: 0.45rem !important;
}
.featured-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.82rem !important;
  line-height: 1.65 !important;
}
.featured-more {
  margin-top: 0.55rem !important;
}
.featured-meta {
  margin-bottom: 0.45rem !important;
}
@media (max-width: 800px) {
  .featured-split { max-height: none !important; }
  .featured-visual--photo,
  .featured-visual--photo img {
    max-height: none !important;
    min-height: 0 !important;
  }
  .featured-visual--photo {
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
  }
}


/* feature half width (desktop) */
@media (min-width: 801px) {
.featured-split {
  grid-template-columns: 140px 1fr !important;
}
.featured-visual--photo,
.featured-visual--photo img {
  width: 140px !important;
}
}
@media (max-width: 800px) {
  .featured-split {
    grid-template-columns: 1fr !important;
  }
  .featured-visual--photo,
  .featured-visual--photo img {
    width: 100% !important;
  }
}


/* feature num balance */
.featured-visual--photo .featured-visual-inner {
  left: 0.55rem !important;
  bottom: 0.45rem !important;
  gap: 0.05rem;
}
.featured-visual--photo .fv-num {
  font-size: 1.15rem !important;
  line-height: 1 !important;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.featured-visual--photo .fv-label {
  font-size: 0.55rem !important;
  letter-spacing: 0.16em !important;
  opacity: 0.85;
}


/* multi motto layers */
.hero-motto-field {
  position: relative;
  min-height: 280px;
}
.motto-cycle {
  pointer-events: none;
}
.motto-cycle.is-in {
  opacity: 0.88;
}


/* marquee slowdown */
.marquee--motto .marquee-track {
  animation-duration: 90s !important;
}

.page-article .article-dek {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #6a625c;
  font-family: var(--serif);
}

.page-article .article-eyecatch {
  margin: 1.1rem 0 1.35rem;
  border-radius: 10px;
  overflow: hidden;
  background: #f3eee8;
}
.page-article .article-eyecatch img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.page-article .article-eyecatch-cap {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #8a8178;
  line-height: 1.5;
}
.page-article .article-eyecatch-cap a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.sample-banner--draft {
  background: #5c4a3a;
  color: #fff8ee;
}

/* ========== mobile polish ========== */
@media (max-width: 800px) {
  .sample-banner {
    font-size: 0.68rem;
    line-height: 1.45;
    padding: 0.45rem 0.75rem;
  }

  .site-header--refined .site-header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
  .site-header--refined .brand-lockup {
    min-width: 0;
    flex: 1;
  }
  .site-header--refined .brand-logo {
    width: auto;
    max-width: min(200px, 58vw);
    height: auto;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(139, 111, 92, 0.28);
    border-radius: 10px;
    background: #fff;
    color: #5c4a3a;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-toggle-bars {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }
  .site-header--refined .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(255, 252, 247, 0.98);
    border-bottom: 1px solid rgba(139, 111, 92, 0.14);
    box-shadow: 0 16px 28px rgba(94, 75, 63, 0.1);
  }
  .site-header--refined.is-nav-open .site-nav {
    display: flex;
  }
  .site-header--refined {
    position: relative;
  }
  .site-header--refined .site-nav > a,
  .site-header--refined .nav-dropdown {
    width: 100%;
  }
  .site-header--refined .site-nav > a,
  .site-header--refined .nav-dropdown-trigger {
    display: block;
    padding: 0.7rem 0.25rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(139, 111, 92, 0.08);
  }
  .site-header--refined .nav-cta {
    margin-top: 0.55rem;
    text-align: center;
    border-bottom: none !important;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.35rem 0.85rem;
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    padding: 0.45rem 0;
    font-size: 0.82rem;
  }

  .hero-bright {
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
  }
  .hero-bright h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
  }
  .hero-lead--bright br {
    display: none;
  }
  .hero-motto-field {
    display: none !important;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .featured-split {
    grid-template-columns: 1fr !important;
    max-height: none !important;
  }
  .featured-visual--photo,
  .featured-visual--photo img {
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
  }
  .featured-visual--photo {
    position: relative;
  }
  .featured-visual--photo .featured-visual-inner {
    position: absolute;
    left: 1rem;
    bottom: 0.85rem;
  }
  .featured-body {
    padding: 1.25rem 1.15rem 1.2rem !important;
  }
  .featured-title {
    font-size: 1.15rem !important;
  }

  .page-article .article-eyecatch img {
    aspect-ratio: 4 / 3;
  }
  .page-article .article-title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }
  .page-article .article-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 801px) {
  .nav-toggle { display: none !important; }
}

/* mobile featured image — last wins */
@media (max-width: 800px) {
  .featured-visual.featured-visual--photo {
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    overflow: hidden;
  }
  .featured-visual.featured-visual--photo > img {
    position: static !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    display: block;
  }
}

/* FEATURED_MOBILE_HAMMER */
@media (max-width: 800px) {
  .section--featured .featured-split {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-height: none !important;
  }
  .section--featured .featured-visual.featured-visual--photo {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }
  .section--featured .featured-visual.featured-visual--photo > img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
  }
}

/* POSTCARD_MOBILE_HAMMER */
@media (max-width: 800px) {
  .post-card-media,
  .post-card-media--logo,
  .post-card-media--photo {
    aspect-ratio: 4 / 3 !important;
    max-height: none !important;
    min-height: 0 !important;
    height: auto !important;
  }
  .post-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* ========== MOBILE_HOME_BEST ========== */
@media (max-width: 800px) {
  body.page-home--bright {
    --m-pad: 1.05rem;
    background: #f7f3ee;
  }

  body.page-home--bright .sample-banner {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.8rem;
  }

  /* sticky compact header */
  body.page-home--bright .site-header--refined {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 252, 247, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 111, 92, 0.1);
  }
  body.page-home--bright .site-header-inner {
    padding: 0.65rem var(--m-pad) !important;
  }
  body.page-home--bright .brand-logo {
    max-width: min(168px, 52vw) !important;
  }

  /* hero: editorial, short, no secondary clutter */
  body.page-home--bright .hero-bright {
    padding: 1.35rem 0 1.5rem !important;
    min-height: 0 !important;
  }
  body.page-home--bright .hero-bright-bg .orb,
  body.page-home--bright .hero-bright-bg .grid-fade {
    opacity: 0.45;
  }
  body.page-home--bright .hero-bright-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 var(--m-pad);
  }
  body.page-home--bright .hero-motto-field {
    display: none !important;
  }
  body.page-home--bright .hero-eyebrow--bright {
    font-size: 0.68rem;
    margin-bottom: 0.55rem;
  }
  body.page-home--bright .hero-bright h1 {
    font-size: clamp(1.7rem, 8vw, 2.15rem) !important;
    line-height: 1.35 !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 0.7rem;
  }
  body.page-home--bright .hero-lead--bright {
    font-size: 0.9rem !important;
    line-height: 1.75 !important;
    color: #5a524c;
    margin: 0 0 1.1rem;
  }
  body.page-home--bright .hero-lead--bright br {
    display: none;
  }
  body.page-home--bright .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: stretch;
  }
  body.page-home--bright .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-size: 0.92rem;
  }
  body.page-home--bright .hero-secondary {
    display: none !important;
  }

  /* motto bar: slim ribbon */
  body.page-home--bright .marquee--motto {
    padding: 0.55rem 0 !important;
    margin: 0 !important;
  }
  body.page-home--bright .marquee--motto .marquee-track {
    font-size: 0.72rem !important;
    letter-spacing: 0.12em;
    animation-duration: 100s !important;
  }

  /* sections */
  body.page-home--bright .section {
    padding: 1.35rem 0 0.4rem !important;
  }
  body.page-home--bright .section .wrap,
  body.page-home--bright .section-cta .wrap {
    padding-left: var(--m-pad);
    padding-right: var(--m-pad);
  }
  body.page-home--bright .section-head {
    margin-bottom: 0.85rem !important;
    align-items: baseline;
  }
  body.page-home--bright .section-heading--plain {
    font-size: 1.05rem !important;
    letter-spacing: 0.08em;
  }
  body.page-home--bright .section-link {
    font-size: 0.75rem;
  }

  /* FEATURED = vertical magazine card */
  body.page-home--bright .section--featured {
    padding-top: 1.1rem !important;
  }
  body.page-home--bright .featured-split {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    max-height: none !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(94, 75, 63, 0.1) !important;
  }
  body.page-home--bright .featured-visual.featured-visual--photo {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    order: 0;
  }
  body.page-home--bright .featured-visual.featured-visual--photo > img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
  }
  body.page-home--bright .featured-visual-inner .fv-num {
    font-size: 1.35rem !important;
  }
  body.page-home--bright .featured-body {
    padding: 1rem 1.05rem 1.15rem !important;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  body.page-home--bright .featured-meta {
    margin: 0 0 0.15rem !important;
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  body.page-home--bright .featured-title {
    font-size: 1.18rem !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    letter-spacing: 0.03em;
  }
  body.page-home--bright .featured-title .sample-mark {
    display: none;
  }
  body.page-home--bright .featured-excerpt {
    -webkit-line-clamp: 3 !important;
    font-size: 0.86rem !important;
    line-height: 1.7 !important;
    margin: 0.15rem 0 0.35rem !important;
  }
  body.page-home--bright .featured-more {
    margin-top: 0.25rem !important;
    font-size: 0.84rem;
    align-self: flex-start;
    padding: 0.45rem 0;
  }

  /* LATEST = horizontal story rows (thumb + text) */
  body.page-home--bright #latest .card-grid--motion {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  body.page-home--bright #latest .post-card--lift {
    display: grid !important;
    grid-template-columns: 108px 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 0.85rem;
    row-gap: 0.15rem;
    padding: 0.7rem !important;
    border-radius: 14px !important;
    align-items: start;
  }
  body.page-home--bright #latest .post-card-media {
    grid-column: 1;
    grid-row: 1 / span 4;
    margin: 0 !important;
    width: 108px;
    height: 108px;
    aspect-ratio: 1 / 1 !important;
    border-radius: 10px !important;
    align-self: stretch;
  }
  body.page-home--bright #latest .post-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body.page-home--bright #latest .post-card-media--logo {
    padding: 0.55rem !important;
  }
  body.page-home--bright #latest .post-card-top {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-items: center;
  }
  body.page-home--bright #latest .post-card-index {
    display: none;
  }
  body.page-home--bright #latest .post-card-cat {
    font-size: 0.68rem;
    margin: 0;
  }
  body.page-home--bright #latest .post-card-title {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  body.page-home--bright #latest .post-card-date {
    grid-column: 2;
    grid-row: 3;
    font-size: 0.7rem;
    margin: 0;
    color: #8a8178;
  }
  body.page-home--bright #latest .post-card-excerpt {
    display: none !important;
  }
  body.page-home--bright #latest .post-card-more {
    grid-column: 2;
    grid-row: 4;
    font-size: 0.75rem;
    margin-top: 0.15rem;
  }

  /* SERIES = horizontal snap scroll */
  body.page-home--bright .section--series .series-card-grid {
    display: flex !important;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin: 0 calc(-1 * var(--m-pad));
    padding-left: var(--m-pad);
    padding-right: var(--m-pad);
  }
  body.page-home--bright .series-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    min-height: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(139, 111, 92, 0.12);
    text-decoration: none;
  }
  body.page-home--bright .series-card-thumb,
  body.page-home--bright .series-card-thumb--logo {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    border-radius: 0 !important;
  }
  body.page-home--bright .series-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body.page-home--bright .series-card-body {
    padding: 0.85rem 0.95rem 1rem;
  }
  body.page-home--bright .series-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* CATEGORY chips: big tap targets */
  body.page-home--bright .category-nav--editorial {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
  }
  body.page-home--bright .category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    background: #fff;
    border: 1px solid rgba(139, 111, 92, 0.18);
  }

  /* CTA compact */
  body.page-home--bright .section-cta {
    padding: 1.25rem 0 1.75rem !important;
  }
  body.page-home--bright .cta-panel--bright {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.15rem 1.05rem !important;
    border-radius: 16px;
  }
  body.page-home--bright .cta-title--dark {
    font-size: 1.1rem !important;
  }
  body.page-home--bright .cta-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* footer quieter */
  body.page-home--bright .site-footer--refined {
    padding: 1.5rem 0 2rem;
  }
  body.page-home--bright .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.1rem;
    padding: 0 var(--m-pad);
  }
  body.page-home--bright .site-footer-copy,
  body.page-home--bright .preview-nav-note {
    padding: 0 var(--m-pad);
    font-size: 0.7rem;
  }
}

/* ========== LOGO_PC_MOBILE ========== */
/* header logo: never clip */
.site-header--refined .brand-logo {
  height: 36px;
  width: auto;
  max-height: 40px;
  object-fit: contain;
  display: block;
}
.site-header--refined .brand-lockup {
  overflow: visible;
}

/* card / series logo thumbs: crisp white mark, contain / large center — NO taupe haze fill */
.post-card-media--logo,
.series-card-thumb--logo {
  background: #ffffff !important;
  padding: 10% !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.post-card-media--logo img,
.series-card-thumb--logo img,
body.page-home--bright #latest .post-card-media--logo img,
body.page-home--bright .series-card-thumb--logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}
.post-card-media--photo img,
.series-card-thumb:not(.series-card-thumb--logo) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.org-contact {
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.65rem;
}
.org-contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  margin: 0;
}
.org-contact dt {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold, #D2A54C);
  font-weight: 600;
}
.org-contact dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5c564f;
  word-break: break-word;
}
.org-contact a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 800px) {
  body.page-home--bright .brand-logo {
    max-width: min(190px, 58vw) !important;
    height: auto !important;
    max-height: 34px !important;
  }
  body.page-home--bright .series-card-thumb--logo {
    aspect-ratio: 16 / 10 !important;
  }
  .post-card-media--logo,
  .series-card-thumb--logo {
    padding: 12% !important;
  }
}


/* PR-CLEAR-LOGO-OVERRIDE */
.post-card-media--logo,
.series-card-thumb--logo {
  background: #ffffff !important;
  border: 1px solid rgba(139,111,92,0.12) !important;
  padding: 12% !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.post-card-media--logo img,
.series-card-thumb--logo img {
  width: 78% !important;
  height: auto !important;
  max-width: 78% !important;
  max-height: 78% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  opacity: 1 !important;
}
