.operation-page {
  --operation-green: #2fb14a;
  --operation-ink: #111827;
  --operation-muted: #667085;
  --operation-surface: #f5f7f8;
  --operation-border: rgba(17, 24, 39, 0.11);
  background: #fff;
  color: var(--operation-ink);
  padding-top: 76px;
}

.operation-page *,
.operation-page *::before,
.operation-page *::after { box-sizing: border-box; }
.operation-page a { color: inherit; text-decoration: none; }
.operation-container { width: min(1240px, 100%); margin: 0 auto; padding: 10px 20px 72px; }
.operation-header { max-width: 980px; margin-bottom: 32px; }
.operation-eyebrow { margin: 0 0 8px; color: var(--operation-green); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.operation-header h1 { margin: 0; color: var(--operation-ink); }

.operation-hero { position: relative; overflow: hidden; border-radius: 18px; background: var(--operation-surface); }
.operation-hero img { display: block; width: 100%; height: clamp(190px, 14vw, 240px); object-fit: cover; }
.operation-hero-label { position: absolute; bottom: 28px; left: 28px; max-width: calc(100% - 56px); padding: 14px 20px; border-radius: 10px; background: rgba(47, 177, 74, .94); color: #fff; font-size: clamp(22px, 3vw, 40px); font-weight: 700; line-height: 1.08; box-shadow: 0 12px 28px rgba(17, 24, 39, .2); }

/* The 2026 campaign artwork contains its complete marketing message. */
.operation-campaign-hero { overflow: hidden; border-radius: 18px 18px 0 0; background: #d9dde8; line-height: 0; }
.operation-campaign-hero picture,
.operation-campaign-hero img { display: block; width: 100%; }
.operation-campaign-hero img { height: auto; }
.operation-campaign-intro { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: clamp(24px, 4vw, 40px); border-radius: 0 0 18px 18px; background: #111827; color: #fff; }
.operation-campaign-period { margin: 0; color: #fff; font-size: clamp(18px, 2vw, 24px); font-weight: 700; }
.operation-campaign-period sup { font-size: .58em; }
.operation-campaign-button { flex: 0 0 auto; padding: 15px 22px; border-radius: 10px; background: var(--operation-green); color: #fff !important; font-weight: 700; line-height: 1.2; text-align: center; transition: background .18s ease, transform .18s ease; }
.operation-campaign-button:hover,
.operation-campaign-button:focus { background: #279b40; transform: translateY(-2px); }

.operation-content { margin-top: 28px; padding: clamp(24px, 4vw, 44px); border: 1px solid var(--operation-border); border-radius: 18px; background: var(--operation-surface); }
.operation-rich-text { color: var(--operation-ink); font-size: 18px; line-height: 1.7; }
.operation-rich-text p,
.operation-rich-text h1,
.operation-rich-text h2,
.operation-rich-text h3,
.operation-rich-text h4,
.operation-rich-text h5,
.operation-rich-text h6,
.operation-rich-text li,
.operation-rich-text span,
.operation-rich-text strong,
.operation-rich-text em { color: var(--operation-ink) !important; }
.operation-rich-text > :first-child { margin-top: 0; }
.operation-rich-text > :last-child { margin-bottom: 0; }
.operation-rich-text h2, .operation-rich-text h3 { line-height: 1.25; }
.operation-rich-text img { max-width: 100%; height: auto; }
.operation-rich-text a { color: var(--operation-green) !important; text-decoration: underline; }
.operation-rich-text ul, .operation-rich-text ol { padding-left: 24px; }

.operation-videos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 28px; }
.operation-video { overflow: hidden; aspect-ratio: 16 / 9; border-radius: 16px; background: #111; }
.operation-video iframe, .operation-video video { width: 100%; height: 100%; border: 0; object-fit: contain; }

.operation-shops { margin-top: 64px; scroll-margin-top: 100px; }
.operation-section-header { margin-bottom: 22px; }
.operation-section-header h2 { margin: 0; color: var(--operation-ink); font-size: clamp(28px, 4vw, 40px); line-height: 1.15; }
.operation-map { overflow: hidden; height: 460px; border: 1px solid var(--operation-border); border-radius: 18px; background: var(--operation-surface); }
.operation-map #map { width: 100%; height: 100%; }
.operation-departments { columns: 3; column-gap: 18px; margin-top: 24px; }
.operation-department { display: inline-block; width: 100%; margin: 0 0 18px; padding: 20px; break-inside: avoid; border: 1px solid var(--operation-border); border-radius: 16px; background: var(--operation-surface); }
.operation-department h3 { margin: 0 0 14px; color: var(--operation-ink); font-size: 18px; }
.operation-department-shops { display: grid; gap: 9px; }
.operation-shop-card { display: flex; flex-direction: column; gap: 4px; padding: 18px; border: 1px solid var(--operation-border); border-radius: 14px; background: var(--operation-surface); transition: color .18s ease, box-shadow .18s ease, transform .18s ease; }
.operation-department .operation-shop-card { background: #fff; }
.operation-shop-card:hover, .operation-shop-card:focus { color: var(--operation-green); box-shadow: 0 9px 22px rgba(17, 24, 39, .09); transform: translateY(-2px); }
.operation-shop-card strong { font-size: 16px; }
.operation-shop-card span { color: var(--operation-muted); font-size: 14px; }

@media (max-width: 900px) {
  .operation-departments { columns: 2; }
}

@media (max-width: 600px) {
  .operation-container { padding: 8px 16px 56px; }
  .operation-hero { border-radius: 14px; }
  .operation-hero img { height: 180px; }
  .operation-hero-label { right: 16px; bottom: 16px; left: 16px; max-width: none; padding: 12px 15px; }
  .operation-campaign-hero { border-radius: 14px 14px 0 0; }
  .operation-campaign-intro { align-items: stretch; flex-direction: column; gap: 22px; padding: 24px 18px; border-radius: 0 0 14px 14px; }
  .operation-campaign-button { width: 100%; }
  .operation-content { margin-top: 18px; padding: 20px 16px; }
  .operation-rich-text { font-size: 16px; }
  .operation-videos { grid-template-columns: 1fr; }
  .operation-departments { columns: 1; }
  .operation-shops { margin-top: 48px; }
  .operation-map { height: 340px; }
}
