/* =========================================================
   一般社団法人 物流共生ネットワーク — Design Camp v2
   "さわやか / AI-style" : 白基調 + emerald→cyan→blue gradient
   枠線・アイコンを排し、余白・タイポ・光で構成
   Apple HIG + Material Design 3 / WCAG AA / Responsive
   ========================================================= */

:root {
  /* --- Fresh brand colors --- */
  --emerald: #10b981;
  --teal: #06b6d4;
  --sky: #0ea5e9;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --brand: #0d9488;              /* solid accent (text-safe) */
  --brand-strong: #0f766e;

  --grad: linear-gradient(115deg, #10b981 0%, #06b6d4 48%, #3b82f6 100%);
  --grad-soft: linear-gradient(115deg, #34d399, #22d3ee 55%, #60a5fa);

  /* --- Neutrals --- */
  --ink: #0f1d2e;
  --ink-2: #56657a;
  --ink-3: #8492a4;
  --bg: #ffffff;
  --bg-soft: #f3f9fd;            /* faint sky tint */
  --bg-tint: #ecf7f7;            /* faint mint tint */
  --hairline: #e6eef5;

  /* radius */
  --r-md: 14px; --r-lg: 22px; --r-xl: 30px; --r-full: 999px;

  /* spacing (8pt) */
  --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px; --s-6: 24px;
  --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* soft shadows (no frames) */
  --shadow-1: 0 6px 24px rgba(13,80,120,.06);
  --shadow-2: 0 14px 40px rgba(13,80,120,.09);
  --shadow-3: 0 24px 60px rgba(13,80,120,.13);

  --maxw: 1120px;
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Yu Gothic UI", Meiryo, sans-serif;
  color: var(--ink); background: var(--bg);
  line-height: 1.85; font-size: 16px; letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--s-24); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
@media (max-width: 640px){ .section { padding-block: var(--s-16); } }

/* gradient brand band (replaces the dark navy band) */
.section--brand {
  position: relative; overflow: hidden; color: #06323a;
  background: linear-gradient(120deg, #d6fbef 0%, #d6f4fb 50%, #dde9ff 100%);
}

/* ---------- Type ---------- */
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h-sec { font-size: clamp(27px, 3.6vw, 38px); font-weight: 800; line-height: 1.38; letter-spacing: .01em; margin-top: var(--s-3); }
.h-sec .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--ink-2); font-size: 17px; margin-top: var(--s-5); max-width: 44em; line-height: 1.95; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 30px; border-radius: var(--r-full);
  font-weight: 700; font-size: 16px; cursor: pointer; border: 0;
  transition: transform .15s ease, box-shadow .25s ease, opacity .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: #10b981; color: #fff; }
.btn--primary:hover { background: #059669; }
.btn--soft { background: #fff; color: var(--brand-strong); box-shadow: var(--shadow-1); }
.btn--soft:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brand-strong); box-shadow: inset 0 0 0 1.5px rgba(13,148,136,.35); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(13,148,136,.7); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s-8); }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h); display: flex; align-items: center;
  background: rgba(255,255,255,.78); backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%; flex: none; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 17px;
  box-shadow: 0 6px 16px rgba(8,145,178,.3);
}
.brand__mark svg { width: 26px; height: 26px; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__text small { font-size: 12px; color: var(--ink-3); letter-spacing: .08em; }
.brand__text strong { font-size: 22px; letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a { padding: 8px 14px; border-radius: var(--r-full); font-size: 14.5px; font-weight: 600; color: var(--ink); transition: color .15s, background .15s; }
.nav a:hover { color: var(--brand); }
.nav a.is-active { color: var(--brand); }
.nav .btn { min-height: 42px; padding: 0 20px; font-size: 14.5px; margin-left: 10px; }
.nav a.btn--primary { color: #fff; }   /* .nav a の文字色に勝たせる（白文字を確実に） */

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
@media (max-width: 900px){
  .nav-toggle { display: grid; place-items: center; }
  .nav { position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--hairline); padding: 12px; box-shadow: var(--shadow-2);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s; }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 14px; }
  .nav .btn { margin: 6px 0 0; }
}

/* ---------- Hero (light & fresh) ---------- */
.hero { position: relative; overflow: hidden; background: #fff; }
.hero__net {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 50% at 12% 8%, rgba(16,185,129,.28), transparent 70%),
    radial-gradient(44% 48% at 90% 6%, rgba(59,130,246,.22), transparent 70%),
    radial-gradient(50% 55% at 78% 92%, rgba(6,182,212,.20), transparent 70%),
    radial-gradient(40% 45% at 20% 95%, rgba(99,102,241,.14), transparent 70%);
  filter: saturate(120%);
}
.hero .container { position: relative; z-index: 1; padding-block: clamp(72px, 12vw, 132px); }
/* 共生イラスト（ネットワーク＋成長）*/
.hero__art { position: absolute; right: -30px; top: 50%; transform: translateY(-50%); width: min(50%, 600px); z-index: 0; pointer-events: none; }
.hero__art svg { width: 100%; height: auto; display: block; }
.hero__art img { width: 100%; height: auto; display: block; }
.hero__art .float { transform-box: fill-box; transform-origin: center; animation: floaty 7s ease-in-out infinite; }
.hero__art .float.b { animation-duration: 9s; animation-delay: -2s; }
.hero__art .float.c { animation-duration: 11s; animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 900px){ .hero__art { right: -8%; width: 96%; opacity: .16; } }
@media (prefers-reduced-motion: reduce){ .hero__art .float { animation: none; } }
.hero__badge {
  display: inline-block; font-size: 14px; font-weight: 700; color: var(--brand-strong);
  letter-spacing: .03em; margin-bottom: 4px;
}
.hero h1 { font-size: clamp(34px, 6.2vw, 64px); font-weight: 900; line-height: 1.2; letter-spacing: .01em; margin-top: var(--s-6); }
.hero h1 .accent { color: #2563eb; }
.hero__sub { margin-top: var(--s-6); font-size: clamp(16px, 2vw, 19px); color: var(--ink-2); max-width: 40em; line-height: 1.95; }
.hero .btn-row { margin-top: var(--s-10); }
.hero__stats { display: flex; flex-wrap: wrap; gap: 48px; margin-top: var(--s-16); }
.hero__stat strong { display: block; font-size: 34px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
.hero__stat span { font-size: 13px; color: var(--ink-2); }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Card (frameless, soft) ---------- */
.card { background: #fff; border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-1); transition: transform .22s ease, box-shadow .22s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.card h3 { font-size: 19px; font-weight: 700; letter-spacing: .01em; }
.card p { color: var(--ink-2); font-size: 15px; margin-top: var(--s-3); line-height: 1.9; }
/* gradient index number replaces icons */
.card__no { display: block; font-size: 13px; font-weight: 900; letter-spacing: .16em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.card__big-no { font-size: 56px; font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: .02em; }

/* problem item: frameless, accent top bar */
.problem { background: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-1); position: relative; }
.problem::before { content: ""; position: absolute; left: 28px; top: 0; width: 40px; height: 4px; border-radius: 0 0 4px 4px; background: var(--grad); }
.problem h3 { font-size: 17px; font-weight: 700; margin-top: 12px; }
.problem p { color: var(--ink-2); font-size: 15px; margin-top: 8px; }

/* ---------- Concept diagram (frameless tint panels) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; gap: 36px; } }

.diagram { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; }
.diagram__box { background: var(--bg-soft); border-radius: var(--r-lg); padding: 24px 20px; text-align: center; }
.diagram__box h4 { font-size: 14px; color: var(--ink-2); margin-bottom: 14px; font-weight: 700; }
.dots-scatter { position: relative; height: 120px; }
.dot { position: absolute; width: 15px; height: 15px; border-radius: 50%; background: var(--ink-3); }
.diagram__arrow { font-size: 24px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 900; }
@media (max-width: 720px){ .diagram { grid-template-columns: 1fr; } .diagram__arrow { transform: rotate(90deg); justify-self: center; } }

/* ---------- Members (frameless) ---------- */
.member { display: flex; gap: 16px; align-items: flex-start; padding: 8px 4px; }
.member__avatar { width: 56px; height: 56px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--grad); color: #fff; font-weight: 800; font-size: 20px; box-shadow: 0 8px 18px rgba(8,145,178,.22); }
.member__role { font-size: 12px; font-weight: 800; letter-spacing: .06em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.member__name { font-size: 18px; font-weight: 700; margin-top: 2px; }
.member__org { font-size: 13.5px; color: var(--ink-2); margin-top: 4px; line-height: 1.7; }

/* ---------- Info list (frameless, hairline rows) ---------- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 18px 4px; border-bottom: 1px solid var(--hairline); font-size: 15px; vertical-align: top; line-height: 1.8; }
.info-table th { width: 180px; font-weight: 700; color: var(--brand-strong); white-space: nowrap; }
@media (max-width: 560px){ .info-table th { width: 110px; font-size: 14px; } .info-table td { font-size: 14px; } }

/* ---------- Timeline (frameless) ---------- */
.timeline { position: relative; margin-top: var(--s-8); padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--emerald), var(--sky)); border-radius: 2px; }
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px var(--teal); }
.tl-item.is-key::before { background: var(--grad); box-shadow: 0 0 0 5px rgba(6,182,212,.18); }
.tl-date { font-size: 13px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: .03em; }
.tl-body { font-size: 16px; font-weight: 600; margin-top: 2px; }
.tl-note { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; }

/* ---------- Steps (frameless, gradient number) ---------- */
.step { position: relative; padding-left: 66px; }
.step__n { position: absolute; left: 0; top: -6px; font-size: 40px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.step h3 { font-size: 18px; font-weight: 700; }

/* ---------- Checklist (no boxed badge) ---------- */
.checklist { display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.8; }
.checklist .ck { flex: none; font-weight: 900; font-size: 18px; line-height: 1.7; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section--brand .checklist .ck { background: linear-gradient(120deg,#0e7490,#0d9488); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Pillar visual (no icon, gradient number panel) ---------- */
.pillar-visual { border-radius: var(--r-xl); min-height: 240px; display: grid; place-items: center; background: linear-gradient(135deg, #e9fbf4, #e4f6fb 55%, #eaf0ff); }
.pillar-visual .card__big-no { font-size: clamp(64px, 12vw, 104px); }

/* ---------- Seminar (gradient panel, frameless) ---------- */
.seminar {
  background: var(--grad); color: #fff; border-radius: var(--r-xl); padding: clamp(30px, 4vw, 52px);
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-3);
}
.seminar::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.14); }
.seminar .tag { display: inline-block; background: rgba(255,255,255,.22); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: var(--r-full); letter-spacing: .08em; backdrop-filter: blur(4px); }
.seminar h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-top: 14px; line-height: 1.45; position: relative; }
.seminar p { color: rgba(255,255,255,.92); margin-top: 10px; position: relative; }
.seminar .meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 18px; font-size: 14.5px; font-weight: 600; position: relative; }
.seminar .btn--soft { color: var(--brand-strong); position: relative; }
@media (max-width: 760px){ .seminar { grid-template-columns: 1fr; } }

/* ---------- Page hero (light) ---------- */
.page-hero { background: #fff; }
.page-hero .container { padding-block: clamp(56px, 9vw, 96px); position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 5.2vw, 50px); font-weight: 900; letter-spacing: .02em; margin-top: 12px; }
.page-hero p { color: var(--ink-2); margin-top: 16px; max-width: 42em; line-height: 1.95; }
.breadcrumb { font-size: 13px; color: var(--ink-3); }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Form (frameless inputs, soft) ---------- */
.form-card { background: #fff; border-radius: var(--r-xl); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-2); }
.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 9px; }
.field .req { color: #e0556b; font-size: 12px; margin-left: 6px; }
.field .opt { color: var(--ink-3); font-size: 12px; margin-left: 6px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-radius: var(--r-md); padding: 14px 16px; font: inherit; font-size: 15px;
  background: var(--bg-soft); color: var(--ink); transition: box-shadow .15s, background .15s;
  box-shadow: inset 0 0 0 1.5px transparent;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; box-shadow: inset 0 0 0 2px var(--teal), 0 0 0 4px rgba(6,182,212,.12); }
.field textarea { resize: vertical; min-height: 140px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
@media (max-width: 560px){ .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--ink-3); margin-top: 6px; }

/* contact info blocks (frameless) */
.info-block { padding: 8px 2px 24px; border-bottom: 1px solid var(--hairline); margin-bottom: 24px; }
.info-block:last-child { border-bottom: 0; }
.info-block h3 { font-size: 18px; font-weight: 700; }
.info-block .k { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.info-block p { color: var(--ink-2); margin-top: 8px; line-height: 2; font-size: 15px; }
.map-embed { margin-top: 16px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-1); }
.map-embed iframe { display: block; width: 100%; height: 230px; border: 0; }

/* ---------- CTA strip (gradient) ---------- */
.cta-strip { background: transparent; color: #fff; text-align: center; position: relative; isolation: isolate; overflow: hidden;
  text-shadow: 0 1px 5px rgba(6,34,48,.4); }            /* 写真上で白文字を読みやすく */
.cta-strip::before {                                    /* トラックヤード写真（くっきり背景に） */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("trucks.jpg") center 58% / cover no-repeat;
  filter: saturate(1.06);
}
.cta-strip::after {                                     /* ブランドグラデーションを半透明で重ね、トラックを残す */
  content: ""; display: block; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(16,185,129,.58) 0%, rgba(6,182,212,.46) 48%, rgba(59,130,246,.66) 100%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(25px, 3.6vw, 36px); font-weight: 800; }
.cta-strip p { color: rgba(255,255,255,.92); margin-top: 12px; }
.cta-strip .btn--soft { color: var(--brand-strong); }
.cta-strip .btn--ghost { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); }
.cta-strip .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; background: rgba(255,255,255,.12); }

/* ---------- Footer（CTA帯=トラック写真背景 / 情報欄=グラデーション） ---------- */
.site-end { background: var(--grad); }                 /* 情報欄はブランドグラデーション */
.cta-strip { background: transparent; }
.site-footer { background: transparent; color: rgba(255,255,255,.82); padding-block: var(--s-12) var(--s-8);
  border-top: 1px solid rgba(255,255,255,.22); }       /* CTAとの区切りを白の細線で */
.site-footer .brand__text small { color: rgba(255,255,255,.75); }
.site-footer .brand__text strong { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: .06em; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,.92); font-size: 14px; line-height: 2.1; }
.site-footer a:hover { color: #fff; }
.footer-about { color: rgba(255,255,255,.82); font-size: 13.5px; line-height: 1.9; margin-top: 16px; max-width: 30em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.22); margin-top: var(--s-12); padding-top: var(--s-6);
  font-size: 12.5px; color: rgba(255,255,255,.8); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

.tba { color: var(--ink-3); background: var(--bg-soft); padding: 1px 8px; border-radius: 6px; font-size: 13px; }
.section--brand .tba { background: rgba(255,255,255,.5); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .card:hover { transform: none; }
}

/* 機能カードの番号：緑四角・白抜き */
.card__badge{ display:inline-grid; place-items:center; width:42px; height:42px; border-radius:10px; background:#10b981; color:#fff; font-weight:800; font-size:17px; letter-spacing:.02em; margin-bottom:14px; }

/* お知らせ一覧 */
.news-list{ border-top:1px dashed var(--hairline); }
.news-item{ display:flex; align-items:center; gap:18px; padding:16px 6px; border-bottom:1px dashed var(--hairline); }
.news-date{ color:var(--brand-strong); font-weight:700; font-size:14px; letter-spacing:.04em; flex-shrink:0; font-variant-numeric:tabular-nums; }
.news-cat{ display:inline-grid; place-items:center; background:#10b981; color:#fff; font-size:12px; font-weight:700; padding:4px 12px; border-radius:6px; flex-shrink:0; min-width:92px; }
.news-title{ color:var(--ink); font-size:15px; }
@media(max-width:640px){ .news-item{flex-wrap:wrap; gap:8px 12px} .news-title{flex-basis:100%} }
