/* 蘑菇视频官网 - 主样式文件 */
:root {
  --primary: #4CAF50;
  --primary-dark: #388E3C;
  --primary-light: #A5D6A7;
  --accent: #FF7043;
  --accent-light: #FFCCBC;
  --text-dark: #212121;
  --text-mid: #555;
  --text-light: #888;
  --bg-white: #fff;
  --bg-light: #F9FBF9;
  --bg-green: #E8F5E9;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font-main: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--primary-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.logo-wrap img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 20px !important;
  border-bottom: none !important;
  font-weight: 600 !important;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== SEARCH BAR ===== */
.search-bar-wrap {
  background: var(--bg-green);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-input {
  flex: 1;
  padding: 10px 20px;
  border: none;
  font-size: 0.95rem;
  outline: none;
  background: #fff;
  font-family: var(--font-main);
}

.search-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  transition: background .2s;
}

.search-btn:hover { background: var(--primary-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 60%, #fff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--primary-dark);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 13px 32px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(76,175,80,0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(76,175,80,0.45);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  padding: 11px 28px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: all .2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}

.stat-item { text-align: center; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

/* ===== SECTION COMMONS ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-light); }
.section-green { background: var(--bg-green); }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BRAND STORY ===== */
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.brand-story-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.brand-story-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.85;
}

.brand-story-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 18px;
}

.product-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== VIDEO CARDS ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s;
}

.video-card:hover { transform: translateY(-4px); }

.video-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a2e;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s, opacity .3s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
  opacity: 0.85;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, opacity .25s;
  opacity: 0;
  pointer-events: none;
}

.play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-dark);
  margin-left: 3px;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 4px;
}

.video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}

.video-info {
  padding: 14px 16px;
}

.video-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
  line-height: 1.4;
}

.video-meta {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.video-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.review-name { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.78rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-q {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
  color: var(--text-dark);
}

.faq-q:hover { background: var(--bg-green); }

.faq-q.open { background: var(--bg-green); color: var(--primary-dark); }

.faq-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
  font-size: 0.8rem;
  color: var(--primary-dark);
}

.faq-q.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 24px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 18px;
}

/* ===== DOWNLOAD CTA ===== */
.download-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2E7D32 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.download-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.download-section p {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.download-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  padding: 13px 32px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 11px 28px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: all .2s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ===== MEDIA / KOL ===== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.media-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.media-name { font-weight: 700; margin-bottom: 4px; }
.media-platform { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.media-quote { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.contact-item-text span { font-size: 0.9rem; color: var(--text-mid); }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a2e1a;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-wrap {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--primary-light); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a { color: var(--primary-dark); }
.breadcrumb span { margin: 0 6px; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-green) 0%, #fff 100%);
  padding: 52px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== TIPS / ARTICLE LIST ===== */
.article-list { display: flex; flex-direction: column; gap: 20px; }

.article-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s;
}

.article-item:hover { transform: translateY(-3px); }

.article-img {
  height: 160px;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.article-item:hover .article-img img { transform: scale(1.05); }

.article-body {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.article-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  gap: 16px;
}

/* ===== CHANGELOG ===== */
.changelog-list { max-width: 760px; margin: 0 auto; }

.changelog-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.changelog-version {
  text-align: right;
}

.version-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.changelog-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.changelog-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.changelog-content ul {
  padding-left: 18px;
}

.changelog-content ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ===== DOWNLOAD PAGE ===== */
.download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.download-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s;
}

.download-card:hover { transform: translateY(-6px); }

.download-card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.download-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.download-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== HELP CENTER ===== */
.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.help-cat {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
}

.help-cat:hover {
  background: var(--bg-green);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.help-cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.help-cat h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.help-cat p { font-size: 0.82rem; color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .hero h1 { font-size: 1.8rem; }

  .brand-story-grid { grid-template-columns: 1fr; }
  .brand-story-img { order: -1; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .download-cards { grid-template-columns: 1fr; }
  .help-categories { grid-template-columns: repeat(2, 1fr); }

  .article-item { grid-template-columns: 1fr; }
  .article-img { height: 200px; }
  .article-body { padding: 16px; }

  .changelog-item { grid-template-columns: 1fr; }
  .changelog-version { text-align: left; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 48px 0; }
  .section-head h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .help-categories { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-btns { flex-direction: column; }
}

/* ===== NAV MOBILE OPEN ===== */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999;
}

.nav-links.open li a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ===== UTIL ===== */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tag {
  background: var(--bg-green);
  color: var(--primary-dark);
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 600;
}
