/* ══════════════════════════════
   PLAYER BLOCK
══════════════════════════════ */
.player-block {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.player-block:hover {
  border-color: rgba(var(--green-rgb),.28);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.pb-portrait {
  width: 140px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 30px 8px 0;
}
.pb-portrait::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); z-index: 3;
}
.pb-portrait::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70px;
  background: linear-gradient(transparent, var(--card)); z-index: 2;
}
.pb-portrait-bg {
  position: absolute; inset: 0;
  background: var(--grad-portrait);
}
.pb-portrait img {
  position: relative; width: 100%; height: auto;
  object-fit: cover; object-position: top center;
  filter: brightness(.85) saturate(.9);
  z-index: 1;
}
.pb-rank {
  position: absolute; top: 10px; right: 10px; z-index: 4;
  background: var(--green); color: #000;
  font-size: .65rem; font-weight: 800; padding: 2px 8px; border-radius: 20px;
  letter-spacing: .4px;
}
.pb-flag {
  position: absolute; top: 10px; left: 10px; z-index: 4; font-size: 1.1rem; width: 30px;
}
.pb-info {
  flex: 1; padding: 16px 18px 18px;
  display: flex; flex-direction: column;
  min-width: 0;
}
.pb-name {
  font-family: var(--font-heading);
  font-size: 1.4rem; letter-spacing: 1px; margin-bottom: 4px; line-height: 1;
}
.pb-desc {
  font-size: .78rem; color: var(--muted); line-height: 1.5; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pb-racket {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 10px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; cursor: pointer;
  transition: border-color .2s;
}
.pb-racket:hover { border-color: rgba(var(--green-rgb),.3); }
.pb-racket-img {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 6px;
  background: var(--grad-racket);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  overflow: hidden;
}
.pb-racket-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.pb-racket-name { font-size: .78rem; font-weight: 600; margin-bottom: 1px; line-height: 1.2; }
.pb-racket-brand { font-size: .7rem; color: var(--muted); }
.pb-btns { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }

/* ══════════════════════════════
   PLAYER BLOCK HERO
══════════════════════════════ */
.player-block-hero {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}
.pbh-portrait {
  width: 260px; flex-shrink: 0;
  position: relative; overflow: hidden; padding: 27px 13px 0;
  display: flex; align-items: flex-end; justify-content: center;
  height: 320px;
}
.pbh-portrait::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); z-index: 3;
}
.pbh-portrait::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(transparent, var(--card)); z-index: 2;
}
.pbh-portrait-bg { position: absolute; inset: 0; background: var(--grad-portrait); }
.pbh-portrait img { width: 100%; height: auto; z-index: 1; }
.pbh-rank { position: absolute; top: 12px; right: 12px; z-index: 4; background: var(--green); color: #000; font-size: .68rem; font-weight: 800; padding: 3px 10px; border-radius: 20px; }
.pbh-flag { position: absolute; top: 12px; left: 12px; z-index: 4; font-size: 1.3rem; width: 30px; line-height: 1;}
.pbh-info {
  flex: 1; padding: 28px 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.pbh-name { font-family: var(--font-heading); font-size: 2.4rem; letter-spacing: 1px; line-height: .95; margin-bottom: 10px; }
.pbh-desc { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; max-width: 380px; }
.pbh-racket {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 14px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; cursor: pointer; transition: border-color .2s; max-width: 360px;
}
.pbh-racket:hover { border-color: rgba(var(--green-rgb),.3); }
.pbh-racket-img { width: 46px; height: 46px; flex-shrink: 0; border-radius: 8px; background: var(--grad-racket); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.pbh-racket-img img { width: 100%; }
.pbh-racket-name { font-size: .85rem; font-weight: 600; margin-bottom: 2px; }
.pbh-racket-brand { font-size: .74rem; color: var(--muted); }
.pbh-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ══════════════════════════════
   TOP RACKET CARD
══════════════════════════════ */
.top-racket {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; cursor: pointer; height: 100%;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.top-racket:hover { border-color: rgba(var(--green-rgb),.28); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.tr-img { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); overflow: hidden; }
.tr-img img { width: 100%; height: 100%; object-fit: contain; }
.tr-body { padding: 12px 14px 16px; }
.tr-player { font-size: .68rem; font-weight: 700; color: var(--green); letter-spacing: .5px; margin-bottom: 3px; }
.tr-name { font-weight: 700; font-size: .9rem; margin-bottom: 2px; }
.tr-brand { font-size: .73rem; color: var(--muted); margin-bottom: 12px; }
.tr-body .btn-g { font-size: .74rem; padding: 7px 0; width: 100%; border-radius: 6px; }

/* ══════════════════════════════
   BLOG CARD
══════════════════════════════ */
a.blog-card { display: block; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; height: 100%; cursor: pointer; transition: transform .3s, border-color .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(var(--green-rgb),.2); box-shadow: 0 14px 32px rgba(0,0,0,.3); }
.blog-img { width: 100%; height: 175px; object-fit: cover; display: block; }
.blog-img-featured { height: 100%; min-height: 200px; border-radius: 14px 0 0 14px; object-fit: cover; }
.blog-body { padding: 16px 18px 20px; }
.blog-body-lg { padding: 28px; }
.blog-cat { display: inline-block; background: rgba(var(--green-rgb),.1); color: var(--green); border: 1px solid rgba(var(--green-rgb),.2); padding: 2px 9px; border-radius: 20px; font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-family: var(--font-heading); font-size: 1.2rem; letter-spacing: .4px; margin-bottom: 7px; line-height: 1.15; }
.blog-title-lg { font-family: var(--font-heading); font-size: 1.55rem; margin-bottom: 10px; line-height: 1.15; }
.blog-excerpt { font-size: .78rem; color: var(--muted); line-height: 1.6; margin-bottom: 11px; }
.blog-desc { color: var(--muted); font-size: .875rem; line-height: 1.7; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: var(--muted); }
.meta-dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }
.filter-btn { border: 1px solid var(--border); background: transparent; color: var(--muted); padding: 5px 14px; border-radius: 20px; font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { border-color: var(--green); color: var(--green); background: rgba(var(--green-rgb),.07); }

/* ── BLOG ROW ── */
.blog-row { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: border-color .2s; }
.blog-row:hover { border-color: rgba(var(--green-rgb),.2); }
.blog-row-num { font-family: var(--font-heading); font-size: 1.7rem; color: rgba(var(--green-rgb),.18); line-height: 1; flex-shrink: 0; width: 26px; }
.blog-row-title { font-weight: 700; font-size: .875rem; margin-bottom: 3px; }
.blog-row-meta { font-size: .74rem; color: var(--muted); }

/* ══════════════════════════════
   PALA HIST CARD
══════════════════════════════ */
a.pala-hist-card { display: block; }
.pala-hist-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; cursor: pointer; height: 100%;
  transition: border-color .2s, transform .2s;
}
.pala-hist-card:hover { border-color: rgba(var(--green-rgb),.22); transform: translateY(-2px); }
.phc-img { aspect-ratio: 1/1; background: var(--grad-racket); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border-bottom: 1px solid var(--border); overflow: hidden; }
.phc-img img { width: 100%; height: 100%; object-fit: contain; }
.phc-body { padding: 9px 11px 12px; }
.phc-year { font-size: .65rem; font-weight: 700; color: var(--green); letter-spacing: .5px; margin-bottom: 2px; }
.phc-name { font-size: .82rem; font-weight: 700; margin-bottom: 1px; line-height: 1.2; }
.phc-brand { font-size: .7rem; color: var(--muted); }
.phc-body .btn-o { font-size: .7rem; padding: 5px 0; width: 100%; border-radius: 6px; }

/* ══════════════════════════════
   OTRAS PALAS
══════════════════════════════ */
.otras-palas-section {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.otras-palas-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.otras-palas-title { font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 1px; line-height: 1; }
.otras-palas-sub { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════
   RACKET CURRENT
══════════════════════════════ */
.racket-current { background: var(--card); border: 1px solid rgba(var(--green-rgb),.18); border-radius: 14px; padding: 22px; position: relative; overflow: hidden; }
.racket-current::before { content: 'PALA ACTUAL'; position: absolute; top: 12px; right: 14px; font-size: .6rem; font-weight: 800; letter-spacing: 2px; color: var(--green); opacity: .6; }
.racket-current-layout { display: flex; gap: 24px; align-items: stretch; }
.rc-img { width: 100%; aspect-ratio: 1; border-radius: 9px; background: var(--grad-racket); display: flex; align-items: center; justify-content: center; font-size: 3rem; margin-bottom: 14px; overflow: hidden; }
.rc-img img { width: 100%; height: 100%; object-fit: contain; }
.rc-img-side { width: 198px; flex-shrink: 0; margin-bottom: 0; align-self: stretch; aspect-ratio: unset; }
.rc-details { flex: 1; min-width: 0; }
.rc-name { font-family: var(--font-heading); font-size: 1.45rem; letter-spacing: .5px; }
.rc-brand { color: var(--muted); font-size: .8rem; margin-bottom: 10px; }
.rc-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.rc-tag { background: rgba(255,255,255,.04); border: 1px solid var(--border); padding: 2px 8px; border-radius: 20px; font-size: .68rem; color: var(--muted); }

/* ══════════════════════════════
   SWIPER
══════════════════════════════ */
.swiper-nav-wrap { position: relative; }
.sw-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
}
.sw-btn:hover { border-color: var(--green); color: var(--green); }
.sw-btn-prev { left: -18px; }
.sw-btn-next { right: -18px; }
.sw-btn i { font-size: .7rem; }

.swiper-players-home { overflow: hidden; }
.swiper-players-home .swiper-slide { height: auto; }

.swiper-rackets-home { overflow: hidden; padding: 6px 0 36px !important; margin: -6px 0 0; }
.swiper-rackets-home .swiper-slide { height: auto; }

.swiper-otros { overflow: hidden; padding: 6px 0 36px; margin: -6px 0 0; }
.swiper-otros .swiper-slide { height: auto; }

.swiper-rackets-home .swiper-pagination-bullet,
.swiper-otros .swiper-pagination-bullet { background: var(--muted); opacity: .4; }
.swiper-rackets-home .swiper-pagination-bullet-active,
.swiper-otros .swiper-pagination-bullet-active { background: var(--green); opacity: 1; }

.swiper-racket { border-radius: 14px; overflow: hidden; width: 100%; }
.swiper-racket .swiper-slide {
  aspect-ratio: 1/1;
  background: var(--grad-racket);
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
  border: 1px solid var(--border); overflow: hidden;
}
.swiper-racket .swiper-slide img { width: 100%; height: 100%; object-fit: contain; padding: 10px; border-radius: 20px; }
.swiper-racket .swiper-slide-active { border-color: rgba(var(--green-rgb),.25); }
.swiper-thumbs-racket { margin-top: 8px; width: 100%; }
.swiper-thumbs-racket .swiper-slide {
  height: 58px; border-radius: 8px; cursor: pointer;
  background: var(--grad-racket);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border: 1px solid var(--border);
  opacity: .5; transition: opacity .2s, border-color .2s; overflow: hidden;
}
.swiper-thumbs-racket .swiper-slide img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.swiper-thumbs-racket .swiper-slide-thumb-active { opacity: 1; border-color: rgba(var(--green-rgb),.35); }

/* ══════════════════════════════
   RACKET PAGE
══════════════════════════════ */
.racket-left-col {
  display: flex; flex-direction: column;
  min-width: 0;
}
.jugador-esta-pala {
  margin-top: 12px;
  background: var(--grad-portrait);
  border: 1px solid rgba(var(--green-rgb),.12);
  border-radius: 12px; overflow: hidden; cursor: default;
  transition: border-color .2s; flex: 1;
  display: flex; flex-direction: column;
}
.jugador-esta-pala:hover { border-color: rgba(var(--green-rgb),.3); }
.jep-header {
  background: rgba(var(--green-rgb),.08);
  border-bottom: 1px solid rgba(var(--green-rgb),.12);
  padding: 8px 14px;
  font-size: .65rem; font-weight: 800; color: var(--green);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.jep-body { padding: 14px; display: flex; align-items: center; gap: 14px; flex: 1; }
.jep-portrait {
  flex-shrink: 0;
  width: 145px; height: 188px; border-radius: 8px;
  background: linear-gradient(160deg, #1a2a1e, #0d1a10);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(var(--green-rgb),.3);
  overflow: hidden; position: relative;
}
.jep-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.jep-rank { font-size: .68rem; font-weight: 800; color: var(--green); letter-spacing: .5px; margin-bottom: 4px; }
.jep-name { font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 1px; color: var(--text); margin-bottom: 8px; line-height: 1; }
.racket-page-name { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3rem); letter-spacing: 1px; color: var(--text); }
.specs-table { width: 100%; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 9px 0; font-size: .84rem; }
.specs-table td:first-child { color: var(--muted); width: 45%; }
.specs-table td:last-child { font-weight: 600; }

/* ══════════════════════════════
   AFFILIATE
══════════════════════════════ */
.affiliate-block {
  background: var(--card); border: 1px solid var(--border); border-radius: 11px;
  padding: 14px 16px; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: border-color .2s;
}
a.affiliate-block { text-decoration: none; color: inherit; }
.affiliate-block .text-end { font-size: .8rem; font-weight: 700; color: var(--green); white-space: nowrap; }
.affiliate-block:hover .text-end { color: #fff; }
.affiliate-block:hover { border-color: rgba(var(--green-rgb),.2); }
.aff-logo { font-weight: 800; font-size: .9rem; }
.aff-logo.amz { color: var(--amazon); }
.aff-logo.amz img { filter: brightness(0) saturate(100%) invert(65%) sepia(37%) saturate(4562%) hue-rotate(1deg) brightness(105%) contrast(105%); }
.aff-logo img { height: 18px; vertical-align: middle; }
.aff-sub { font-size: .7rem; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════════
   HOME STATS
══════════════════════════════ */
.home-stats { display: flex; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 28px; max-width: 380px; }
.home-stat { flex: 1; padding: 12px 16px; text-align: center; border-right: 1px solid var(--border); }
.home-stat:last-child { border-right: none; }
.home-stat-val { font-family: var(--font-heading); font-size: 1.6rem; color: var(--green); line-height: 1; }
.home-stat-lbl { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════
   PLAYER STATS
══════════════════════════════ */
.player-stats-row { display: flex; gap: 20px; margin: 16px 0; flex-wrap: wrap; }
.pstat-val { font-family: var(--font-heading); font-size: 1.7rem; color: var(--green); line-height: 1; }
.pstat-lbl { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.pstat-val img{ height: 24px; }
/* ══════════════════════════════
   WHY SECTION
══════════════════════════════ */
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px; background: rgba(var(--green-rgb),.08); border: 1px solid rgba(var(--green-rgb),.18); display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.why-title { font-weight: 700; font-size: .875rem; margin-bottom: 2px; }
.why-text { color: var(--muted); font-size: .78rem; line-height: 1.6; }

/* ══════════════════════════════
   ARTICLE
══════════════════════════════ */
.article-body { max-width: 700px; }
.article-body h2 { font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 1px; margin: 32px 0 10px; }
.article-body h3 { font-size: .95rem; font-weight: 700; margin: 20px 0 7px; }
.article-body p { color: var(--muted); font-size: .875rem; line-height: 1.85; margin-bottom: 14px; }
.article-body strong { color: var(--text); }
.art-product { background: var(--card); border: 1px solid rgba(var(--green-rgb),.18); border-radius: 12px; padding: 16px; display: flex; gap: 14px; align-items: center; margin: 20px 0; }
.art-rank { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; background: var(--green); color: #000; font-weight: 800; font-size: .72rem; display: flex; align-items: center; justify-content: center; }
.art-thumb { width: 68px; height: 68px; flex-shrink: 0; border-radius: 8px; background: var(--grad-racket); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; overflow: hidden; }
.art-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.art-hero-img { width: 100%; border-radius: 12px; margin-bottom: 24px; object-fit: cover; max-height: 400px; }
.art-product-info { flex: 1; }
.art-product-name { font-weight: 700; margin-bottom: 2px; }
.art-product-meta { color: var(--muted); font-size: .78rem; margin-bottom: 8px; }
.art-callout { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px; margin-top: 24px; }
.art-callout-title { font-weight: 700; margin-bottom: 10px; font-size: .875rem; }
.art-callout-link { color: var(--green); font-size: .84rem; }

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.sidebar-box { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.sidebar-sticky { position: sticky; top: 80px; }
.sidebar-title { font-weight: 700; margin-bottom: 12px; font-size: .875rem; }
.sidebar-featured-img { height: 90px; background: var(--surface); border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.sidebar-featured-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.sidebar-product-name { font-weight: 700; margin-bottom: 2px; }
.sidebar-product-meta { color: var(--muted); font-size: .78rem; margin-bottom: 12px; }
.sidebar-popular-link { display: flex; gap: 12px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-popular-link:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-popular-img { width: 70px; height: 50px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-popular-title { font-size: .82rem; font-weight: 600; margin-bottom: 2px; line-height: 1.3; }
.sidebar-popular-meta { font-size: .72rem; color: var(--muted); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-input { background: var(--surface); border: 1px solid var(--border); border-radius: 9px; color: var(--text); padding: 11px 14px; width: 100%; font-family: 'DM Sans', sans-serif; font-size: .875rem; transition: border-color .2s; outline: none; }
.contact-input:focus { border-color: rgba(var(--green-rgb),.38); }
.contact-input::placeholder { color: var(--muted); }
textarea.contact-input { resize: vertical; min-height: 130px; }
.contact-label { font-size: .78rem; font-weight: 600; margin-bottom: 5px; display: block; }
.contact-checkbox { margin-top: 3px; accent-color: var(--green); cursor: pointer; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.checkbox-label { font-size: .76rem; color: var(--muted); line-height: 1.6; cursor: pointer; }

/* ── INFO ITEMS ── */
.info-item { display: flex; gap: 12px; align-items: flex-start; }
.info-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: 8px; background: rgba(var(--green-rgb),.1); border: 1px solid rgba(var(--green-rgb),.2); display: flex; align-items: center; justify-content: center; }
.info-title { font-weight: 700; font-size: .875rem; margin-bottom: 2px; }
.info-text { color: var(--muted); font-size: .8rem; line-height: 1.55; }
.notice-box { background: rgba(var(--green-rgb),.05); border: 1px solid rgba(var(--green-rgb),.15); border-radius: 10px; padding: 14px; }
.notice-text { font-size: .74rem; color: var(--muted); line-height: 1.7; }
.notice-text strong { color: var(--text); }
