/* ===================================================
   JOB HOPPERS LAB — Home v3
   Clean Trust Blue + Warm Ivory
   =================================================== */

/* --- Design Tokens --- */
:root {
  --color-primary-900: #123E7A;
  --color-primary-700: #1654A6;
  --color-teal-600: #0D8EA3;
  --color-teal-400: #49B2B0;
  --color-violet-600: #5A49A6;
  --color-success-600: #2CA06B;

  --color-surface-ivory: #FAF8F3;
  --color-surface-white: #FFFFFF;
  --color-background: #F6F7F9;
  --color-border: #E6E8ED;

  --color-text-900: #1B2430;
  --color-text-700: #344054;
  --color-text-600: #677081;
  --color-text-400: #98A2B3;

  --color-warning-soft: #FFF7E8;
  --color-teal-soft: #EAF8F8;
  --color-blue-soft: #EEF5FF;
  --color-violet-soft: #F3F0FF;

  --font-sans: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Noto Serif JP", serif;

  --font-size-h1: clamp(36px, 5vw, 64px);
  --font-size-h2: clamp(24px, 3vw, 32px);
  --font-size-h3: 20px;
  --font-size-body-lg: 17px;
  --font-size-body: 16px;
  --font-size-body-sm: 14px;
  --font-size-caption: 12px;

  --line-height-heading: 1.4;
  --line-height-body: 1.8;

  --container-max: 1120px;
  --container-px: 24px;

  --section-space-xl: 96px;
  --section-space-lg: 80px;
  --section-space-md: 64px;
  --section-space-sm: 48px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 8px 24px rgba(18, 62, 122, 0.08);
  --shadow-soft: 0 4px 16px rgba(18, 62, 122, 0.06);
}

/* --- Reset for top page --- */
.jh-v3 *, .jh-v3 *::before, .jh-v3 *::after { box-sizing: border-box; }
.jh-v3 { font-family: var(--font-sans); color: var(--color-text-700); line-height: var(--line-height-body); -webkit-font-smoothing: antialiased; }
.jh-v3 a { color: inherit; text-decoration: none; }
.jh-v3 img { max-width: 100%; height: auto; display: block; }

/* --- Hide Cocoon chrome on front page --- */
body.front-page .header-container,
body.front-page #header,
body.front-page .appeal,
body.front-page .footer,
body.front-page #footer,
body.front-page .go-to-top,
body.front-page .breadcrumb,
body.front-page .content-title-block,
body.front-page .sns-share,
body.front-page .sns-follow,
body.front-page .under-entry-content,
body.front-page .related-entries,
body.front-page .pager-post-navi,
body.front-page .comment-area,
body.front-page .sidebar,
body.front-page #sidebar,
body.front-page .author-info,
body.front-page .date-tags,
body.front-page .eye-catch,
body.front-page .jh-cta-floating,
body.front-page .jh-cta-sticky-bottom { display: none !important; }

body.front-page .wrap { max-width: 100% !important; padding: 0 !important; }
body.front-page .main { max-width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important; width: 100% !important; }
body.front-page .entry-content { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
body.front-page .article { padding: 0 !important; margin: 0 !important; border: none !important; box-shadow: none !important; background: transparent !important; }
body.front-page #content { margin: 0 !important; padding: 0 !important; }
body.front-page .content { margin: 0 !important; padding: 0 !important; }

/* --- Container --- */
.jh-v3 .v3-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================
   HEADER (Dark Navy)
   ============================ */
.v3-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary-900);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.v3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.v3-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v3-header-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.v3-header-logo img,
.v3-header-logo svg { width: 100%; height: 100%; }
.v3-header-titles { line-height: 1.3; }
.v3-header-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.v3-header-tagline {
  font-size: 11px;
  color: rgba(255,255,255,.55);
}
.v3-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.v3-header-nav a {
  font-size: var(--font-size-body-sm);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.v3-header-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.v3-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  color: #fff;
  background: var(--color-teal-600);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: background .2s, transform .2s;
}
.v3-header-cta:hover { background: #0b7d90; transform: translateY(-1px); }

/* Mobile hamburger */
.v3-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.v3-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: background .3s;
}
.v3-hamburger span::before,
.v3-hamburger span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  left: 0;
  transition: transform .3s;
}
.v3-hamburger span::before { top: -7px; }
.v3-hamburger span::after { top: 7px; }
.v3-hamburger.is-open span { background: transparent; }
.v3-hamburger.is-open span::before { transform: rotate(45deg); top: 0; }
.v3-hamburger.is-open span::after { transform: rotate(-45deg); top: 0; }

.v3-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary-900);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
}
.v3-mobile-menu.is-open { display: block; }
.v3-mobile-menu a {
  display: block;
  font-size: var(--font-size-body-lg);
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.v3-mobile-menu .v3-header-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding: 14px;
  font-size: var(--font-size-body);
}

/* ============================
   HERO
   ============================ */
.v3-hero {
  background: linear-gradient(135deg, var(--color-surface-ivory) 0%, #fff 100%);
  padding: var(--section-space-lg) 0 var(--section-space-md);
  overflow: hidden;
}
.v3-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.v3-hero h1 {
  font-family: var(--font-serif);
  font-size: var(--font-size-h1);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-text-900);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.v3-hero h1 em {
  font-style: normal;
  color: var(--color-teal-600);
  position: relative;
}
.v3-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: var(--color-teal-400);
  opacity: .4;
}
.v3-hero-sub {
  font-size: var(--font-size-body-lg);
  color: var(--color-text-600);
  line-height: 1.9;
  margin: 0 0 32px;
}
.v3-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.v3-hero-visual img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 100%;
  height: 380px;
  box-shadow: var(--shadow-card);
}

/* ============================
   BUTTONS
   ============================ */
.v3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--font-size-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.v3-btn:hover { transform: translateY(-1px); }
.v3-btn-primary {
  color: #fff;
  background: var(--color-teal-600);
  box-shadow: var(--shadow-soft);
}
.v3-btn-primary:hover { background: #0b7d90; }
.v3-btn-secondary {
  color: var(--color-primary-900);
  background: #fff;
  border: 1.5px solid var(--color-teal-400);
}
.v3-btn-secondary:hover { background: var(--color-teal-soft); }

/* ============================
   AUTHOR TRUST STRIP
   ============================ */
.v3-trust {
  background: var(--color-surface-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
}
.v3-trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.v3-trust-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-700);
  flex-shrink: 0;
}
.v3-trust-text { flex: 1; }
.v3-trust-name {
  font-size: var(--font-size-body);
  font-weight: 700;
  color: var(--color-text-900);
  margin-bottom: 4px;
}
.v3-trust-name a {
  color: var(--color-teal-600);
  font-weight: 500;
  font-size: var(--font-size-body-sm);
  margin-left: 8px;
}
.v3-trust-name a:hover { text-decoration: underline; }
.v3-trust-desc {
  font-size: var(--font-size-body-sm);
  color: var(--color-text-600);
  line-height: 1.7;
}

/* ============================
   FEELING CATEGORY CARDS
   ============================ */
.v3-feelings {
  background: var(--color-background);
  padding: var(--section-space-lg) 0;
}
.v3-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.v3-section-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-text-900);
  margin: 0;
}
.v3-section-link {
  font-size: var(--font-size-body-sm);
  font-weight: 500;
  color: var(--color-teal-600);
}
.v3-section-link:hover { text-decoration: underline; }

.v3-feelings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.v3-feeling-card {
  background: var(--color-surface-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.v3-feeling-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.v3-feeling-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.v3-feeling-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.v3-feeling-icon--think { background: var(--color-blue-soft); }
.v3-feeling-icon--sos { background: var(--color-warning-soft); }
.v3-feeling-icon--prep { background: var(--color-teal-soft); }
.v3-feeling-icon--next { background: var(--color-violet-soft); }
.v3-feeling-icon--story { background: #FFF0F0; }
.v3-feeling-title {
  font-size: var(--font-size-body);
  font-weight: 700;
  color: var(--color-text-900);
  line-height: 1.4;
}
.v3-feeling-desc {
  font-size: var(--font-size-body-sm);
  color: var(--color-text-600);
  line-height: 1.6;
}
.v3-feeling-arrow {
  font-size: var(--font-size-caption);
  color: var(--color-teal-600);
  font-weight: 600;
  margin-top: auto;
}

/* ============================
   SOS SIGNS (horizontal numbered)
   ============================ */
.v3-sos {
  background: linear-gradient(135deg, #E8F0F2 0%, var(--color-surface-ivory) 50%, #E8EDF2 100%);
  padding: var(--section-space-lg) 0;
}
.v3-sos-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-text-900);
  margin: 0 0 40px;
  text-align: center;
  line-height: 1.5;
}
.v3-sos-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.v3-sos-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.v3-sos-num {
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  color: var(--color-teal-600);
}
.v3-sos-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.v3-sos-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.v3-sos-text {
  font-size: var(--font-size-body-sm);
  color: var(--color-text-700);
  line-height: 1.6;
}
.v3-sos-cta { text-align: center; }

/* ============================
   SERVICE ROUTE CARDS
   ============================ */
.v3-services {
  background: var(--color-surface-white);
  padding: var(--section-space-xl) 0;
}
.v3-service-header { text-align: center; margin-bottom: 48px; }
.v3-service-kicker {
  font-size: var(--font-size-caption);
  font-weight: 700;
  color: var(--color-teal-600);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.v3-service-lead {
  font-size: var(--font-size-body);
  color: var(--color-text-600);
  line-height: 1.8;
  margin-top: 16px;
}
.v3-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v3-service-card {
  border-radius: var(--radius-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.v3-service-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--color-background);
  display: block;
}
.v3-service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.v3-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.v3-service-card--taishoku {
  background: linear-gradient(135deg, var(--color-teal-soft) 0%, #fff 100%);
  border-color: var(--color-teal-400);
}
.v3-service-card--agent {
  background: linear-gradient(135deg, var(--color-blue-soft) 0%, #fff 100%);
  border-color: #B0C7F0;
}
.v3-service-card--coaching {
  background: linear-gradient(135deg, var(--color-violet-soft) 0%, #fff 100%);
  border-color: #C4B9E8;
}
.v3-service-for {
  font-size: var(--font-size-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.v3-service-card--taishoku .v3-service-for { color: var(--color-teal-600); }
.v3-service-card--agent .v3-service-for { color: var(--color-primary-700); }
.v3-service-card--coaching .v3-service-for { color: var(--color-violet-600); }
.v3-service-name {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-text-900);
}
.v3-service-desc {
  font-size: var(--font-size-body-sm);
  color: var(--color-text-600);
  line-height: 1.7;
}
.v3-service-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.v3-service-checks li {
  font-size: var(--font-size-body-sm);
  color: var(--color-text-700);
  line-height: 1.6;
  padding: 3px 0 3px 22px;
  position: relative;
}
.v3-service-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-teal-600);
  font-weight: 700;
}
.v3-service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.v3-service-badge {
  font-size: var(--font-size-caption);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.7);
}
.v3-service-card--taishoku .v3-service-badge { color: var(--color-teal-600); border: 1px solid var(--color-teal-400); }
.v3-service-card--agent .v3-service-badge { color: var(--color-primary-700); border: 1px solid #B0C7F0; }
.v3-service-card--coaching .v3-service-badge { color: var(--color-violet-600); border: 1px solid #C4B9E8; }
.v3-service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  color: #fff;
  transition: background .2s, transform .2s;
  margin-top: auto;
}
.v3-service-cta:hover { transform: translateY(-1px); }
.v3-service-card--taishoku .v3-service-cta { background: var(--color-teal-600); }
.v3-service-card--taishoku .v3-service-cta:hover { background: #0b7d90; }
.v3-service-card--agent .v3-service-cta { background: var(--color-primary-700); }
.v3-service-card--agent .v3-service-cta:hover { background: var(--color-primary-900); }
.v3-service-card--coaching .v3-service-cta { background: var(--color-violet-600); }
.v3-service-card--coaching .v3-service-cta:hover { background: #4a3b96; }
.v3-service-note {
  font-size: var(--font-size-caption);
  color: var(--color-text-400);
  text-align: center;
  margin-top: 16px;
}

/* ============================
   LATEST ARTICLES
   ============================ */
.v3-latest {
  background: var(--color-background);
  padding: var(--section-space-lg) 0;
}
.v3-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.v3-latest-card {
  display: flex;
  gap: 16px;
  background: var(--color-surface-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: transform .2s, box-shadow .2s;
}
.v3-latest-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.v3-latest-thumb {
  width: 140px;
  height: 100px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-background);
}
.v3-latest-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.v3-latest-cat {
  font-size: var(--font-size-caption);
  font-weight: 600;
  color: var(--color-teal-600);
}
.v3-latest-title {
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  color: var(--color-text-900);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v3-latest-date {
  font-size: var(--font-size-caption);
  color: var(--color-text-400);
  margin-top: auto;
}

/* ============================
   FOOTER
   ============================ */
.v3-footer {
  background: var(--color-text-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.v3-footer a { color: rgba(255,255,255,.7); }
.v3-footer a:hover { color: #fff; }
.v3-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.v3-footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.v3-footer-brand-desc {
  font-size: var(--font-size-body-sm);
  line-height: 1.7;
  margin-bottom: 20px;
}
.v3-footer-heading {
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.v3-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.v3-footer-links li { margin-bottom: 10px; }
.v3-footer-links a { font-size: var(--font-size-body-sm); }
.v3-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: var(--font-size-caption);
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1023px) {
  .v3-header-nav { display: none; }
  .v3-header-cta.v3-header-cta--desktop { display: none; }
  .v3-hamburger { display: flex; }

  .v3-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .v3-hero-visual { order: -1; }
  .v3-hero-visual img { max-height: 300px; width: 100%; }

  .v3-feelings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .v3-sos-row { grid-template-columns: repeat(3, 1fr); }

  .v3-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v3-service-card { flex-direction: row; }
  .v3-service-thumb { width: 180px; height: auto; min-height: 160px; }
  .v3-service-body { padding: 20px; }

  .v3-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-px: 16px;
    --section-space-xl: 64px;
    --section-space-lg: 48px;
    --section-space-md: 40px;
    --section-space-sm: 32px;
  }

  .v3-hero { padding: var(--section-space-md) 0; }
  .v3-hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .v3-hero-sub { font-size: var(--font-size-body); }
  .v3-hero-actions { flex-direction: column; }
  .v3-hero-actions .v3-btn { width: 100%; justify-content: center; }

  .v3-trust-inner { flex-direction: column; text-align: center; }

  .v3-feelings-grid {
    grid-template-columns: 1fr 1fr;
  }
  .v3-feeling-card { padding: 18px 14px; }

  .v3-sos-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .v3-sos-item:last-child { grid-column: 1 / -1; }
  .v3-sos-icon { width: 60px; height: 60px; }

  .v3-latest-grid { grid-template-columns: 1fr; }
  .v3-latest-card { flex-direction: row; }
  .v3-latest-thumb { width: 100px; height: 75px; }

  .v3-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --- GW seasonal banner (keep) --- */
.v3-seasonal {
  background: linear-gradient(90deg, var(--color-warning-soft) 0%, var(--color-surface-ivory) 100%);
  border: 1px solid #F0DEB3;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.v3-seasonal:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.v3-seasonal-badge {
  background: #F59E0B;
  color: #fff;
  font-size: var(--font-size-caption);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.v3-seasonal-text { font-size: var(--font-size-body-sm); color: var(--color-text-700); font-weight: 600; }
.v3-seasonal-arrow { margin-left: auto; color: var(--color-text-400); flex-shrink: 0; }

@media (max-width: 767px) {
  .v3-seasonal { flex-wrap: wrap; gap: 8px; }
}
