/* =============================================
   STYLE.CSS – Casino non AAMS | Mobile-First
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a7a4a;
  --green-light: #2a9d60;
  --green-pale: #e8f5ee;
  --red: #c0392b;
  --red-light: #e74c3c;
  --bg: #f8f9fa;
  --bg-alt: #f1f3f5;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6c757d;
  --border: #dee2e6;
  --card-shadow: 0 2px 12px rgba(0,0,0,.08);
  --card-shadow-hover: 0 6px 24px rgba(0,0,0,.14);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Sora', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 0; list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.3;
  color: var(--text);
}

h2 {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--green-pale);
}

h3 {
  font-size: clamp(17px, 3vw, 21px);
  font-weight: 600;
  margin: 2rem 0 .75rem;
  color: var(--text);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul li, ol li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .4rem;
  font-size: 15px;
}
ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
ol {
  counter-reset: ol-counter;
}
ol li {
  counter-increment: ol-counter;
  padding-left: 1.75rem;
}
ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---- HEADER (critical CSS duplicate for completeness) ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--green-light);
  text-decoration: none;
  transform: translateY(-1px);
}
.header-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- HERO (critical CSS duplicate) ---- */
.hero {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #1a4a2e 100%);
  color: var(--white);
  padding: 48px 16px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -.3px;
  color: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  align-items: center;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-meta svg { width: 14px; height: 14px; opacity: .8; }

.badge-update {
  background: rgba(26,122,74,.35);
  border: 1px solid rgba(26,122,74,.6);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #7fff9a;
}

.hero-intro {
  font-size: clamp(15px, 2.5vw, 17px);
  color: rgba(255,255,255,.88);
  max-width: 760px;
  line-height: 1.7;
}

/* ---- MAIN WRAP ---- */
.main-wrap { background: var(--bg); }

/* ---- LISTING SECTION ---- */
.listing-section {
  padding: 40px 0 20px;
  background: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  border-bottom: none;
  padding-bottom: 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ---- CASINO CARDS ---- */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--card-shadow);
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.casino-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.casino-card.card-featured {
  border-color: var(--green);
  border-width: 2px;
}

.card-rank {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.rank-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.card-featured .rank-number {
  background: var(--green);
  color: var(--white);
}

.featured-tag {
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.card-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.card-brand img {
  width: 120px;
  height: 45px;
  object-fit: contain;
  aspect-ratio: 8/3;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  padding: 4px 8px;
  flex-shrink: 0;
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
}

/* Stars */
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star-rating svg {
  width: 14px;
  height: 14px;
  color: #f5a623;
}
.star-rating .star-half { opacity: .45; }
.rating-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Bonus block */
.card-bonus {
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 12px;
  margin-bottom: 14px;
}

.bonus-label {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
}

.bonus-text {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.3;
}

.bonus-detail {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* Features */
.card-features {
  margin-bottom: 16px;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding-left: 0;
  margin-bottom: 6px;
  color: var(--text);
}
.card-features li::before { display: none; }
.card-features svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* CTA */
.card-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-play:hover {
  background: var(--green-light);
  text-decoration: none;
  transform: translateY(-1px);
}

.license-badge {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- CONTENT ARTICLE ---- */
.content-article {
  padding: 40px 0;
}

.content-article .container > h2:first-of-type {
  margin-top: 0;
}

/* Tables */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 14px;
}

thead th {
  background: #1a2e20;
  color: var(--white);
  font-weight: 600;
  padding: 11px 14px;
  text-align: left;
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--green-pale); }

tbody td {
  padding: 10px 14px;
  vertical-align: middle;
  line-height: 1.4;
}
tbody tr:nth-child(even) td { background: var(--bg-alt); }
tbody tr:nth-child(even):hover td { background: var(--green-pale); }

/* ---- FAQ SECTION ---- */
.faq-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--green-pale);
}

.faq-section h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}

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

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  margin: 0;
  background: var(--bg-alt);
  color: var(--text);
  cursor: default;
  position: relative;
}
.faq-item h3::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 9px;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.faq-item p {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  margin: 0;
}

/* ---- AUTHOR SECTION ---- */
.author-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.author-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border);
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  flex-shrink: 0;
}

.author-content { flex: 1; }

.author-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.author-name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
}

.author-role {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.author-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  text-decoration: underline;
}

.author-bio {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,.75);
  padding: 40px 0 24px;
  font-size: 14px;
}

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

.footer-col-title {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.footer-col ul li {
  padding-left: 0;
  margin-bottom: 6px;
}
.footer-col ul li::before { display: none; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  transition: color .15s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--white); text-decoration: underline; }

.footer-col-wide {
  grid-column: 1 / -1;
}

.adm-logo {
  margin-bottom: 14px;
  max-width: 140px;
  filter: brightness(0) invert(1);
  opacity: .7;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-disclaimer a { color: rgba(255,255,255,.7); }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin: 0;
}

/* ---- RESPONSIVE: TABLET (≥600px) ---- */
@media (min-width: 600px) {

  .hero { padding: 60px 32px 50px; }

  .casino-card { padding: 22px 22px; }

  .card-brand img {
    width: 140px;
    height: 52px;
  }

  .card-cta { gap: 16px; }

  .author-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .footer-col-wide {
    grid-column: auto;
  }
}

/* ---- RESPONSIVE: DESKTOP (≥900px) ---- */
@media (min-width: 900px) {

  .hero { padding: 72px 40px 60px; }

  /* Header nav visible on desktop */
  .header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .header-nav a {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  .header-nav a:hover {
    background: var(--green-pale);
    color: var(--green);
    text-decoration: none;
  }

  /* Cards: horizontal layout */
  .casino-card {
    display: grid;
    grid-template-columns: 36px 200px 1fr auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 20px;
    padding: 20px 24px;
  }

  .card-rank {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .card-brand {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .card-brand img {
    width: 160px;
    height: 60px;
    margin-bottom: 8px;
  }

  .card-bonus {
    grid-column: 3;
    grid-row: 1;
    margin-bottom: 0;
    align-self: end;
  }

  .card-features {
    grid-column: 3;
    grid-row: 2;
    margin-bottom: 0;
    align-self: start;
    padding-top: 8px;
  }

  .card-cta {
    grid-column: 4 / 6;
    grid-row: 1 / 3;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
  }

  .btn-play {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }

  /* Content */
  .content-article { padding: 52px 0; }

  /* Author */
  .author-avatar { width: 80px; height: 80px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr 2fr;
    gap: 0 48px;
  }
}

/* ---- RESPONSIVE: LARGE (≥1200px) ---- */
@media (min-width: 1200px) {
  .container { padding: 0 24px; }
}

/* ---- ACCESSIBILITY ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

a:focus-visible,
.btn-play:focus-visible,
.header-cta:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* =============================================
   ADDITIONAL PAGES CSS
   ============================================= */

/* ---- LEGAL NAV BAR ---- */
.legal-nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 90;
}

.legal-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.legal-nav::-webkit-scrollbar { display: none; }

.legal-nav a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.legal-nav a:hover {
  color: var(--green);
  border-bottom-color: var(--green);
  text-decoration: none;
}

/* ---- LEGAL SECTIONS ---- */
.legal-section {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.legal-section-header h2 {
  margin: 0;
  border-bottom: none;
  padding-bottom: 0;
  font-size: clamp(20px,3.5vw,26px);
}

.legal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius);
  flex-shrink: 0;
  color: var(--green);
}
.legal-icon svg { width: 22px; height: 22px; }

/* ---- VINCITE ---- */
.vincite-notice {
  display: flex;
  gap: 14px;
  background: #fff8e1;
  border: 1px solid #f9c74f;
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.vincite-notice svg {
  width: 22px;
  height: 22px;
  color: #e65100;
  flex-shrink: 0;
  margin-top: 2px;
}
.vincite-notice p { margin: 0; font-size: 14px; }

.adm-link-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--green-pale);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin: 24px 0;
}
.adm-link-box strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.adm-link-box p { font-size: 14px; margin-bottom: 10px; }
.adm-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s;
  width: fit-content;
}
.adm-ext-link:hover { background: var(--green-light); text-decoration: none; }
.adm-ext-link svg { width: 14px; height: 14px; }

/* ---- AUTHOR PAGE ---- */
.author-profile-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  margin: 32px 0;
  box-shadow: var(--card-shadow);
}

.author-profile-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--green);
}

.author-profile-name {
  font-family: var(--font-display);
  font-size: clamp(22px,4vw,30px);
  font-weight: 700;
  margin-bottom: 4px;
  border-bottom: none;
  padding-bottom: 0;
}

.author-profile-role {
  display: block;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 14px;
}

.author-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(26,122,74,.2);
}
.badge-item svg { width: 13px; height: 13px; }

/* Author quote */
.author-quote {
  background: linear-gradient(135deg, #0f2027 0%, #1a4a2e 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  position: relative;
  margin: 2rem 0;
}
.quote-icon {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,.2);
  margin-bottom: 14px;
}
.author-quote p {
  font-size: clamp(15px,2vw,17px);
  line-height: 1.75;
  color: rgba(255,255,255,.9);
  font-style: italic;
  margin-bottom: 16px;
}
.author-quote footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.author-quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-display);
}
.author-quote footer span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* Author expertise grid */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 1rem;
}

.expertise-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: box-shadow .2s;
}
.expertise-item:hover { box-shadow: var(--card-shadow); }
.expertise-item svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  margin-bottom: 10px;
}
.expertise-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.expertise-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Author method steps */
.method-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 1rem; }

.method-step {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.step-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p { font-size: 14px; color: var(--text); margin: 0; }

/* Content section spacing */
.content-section {
  padding: 40px 0 24px;
  border-bottom: 1px solid var(--border);
}
.content-section:last-child { border-bottom: none; }

/* ---- RESPONSABILE PAGE ---- */
.resp-urgent-box {
  display: flex;
  gap: 14px;
  background: var(--red-pale, #fdecea);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin: 28px 0;
  align-items: flex-start;
}
.resp-urgent-box svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.resp-urgent-box strong { display: block; margin-bottom: 4px; color: var(--red); font-size: 15px; }
.resp-urgent-box p { margin: 0; font-size: 14px; }
.resp-urgent-box a { color: var(--green); font-weight: 600; }

/* Golden rules */
.golden-rules { display: flex; flex-direction: column; gap: 14px; margin-top: 1rem; }

.golden-rule {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  align-items: flex-start;
}

.rule-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.rule-icon svg { width: 20px; height: 20px; }
.rule-icon-green { background: var(--green-pale); color: var(--green); }
.rule-icon-red { background: #fdecea; color: var(--red); }

.golden-rule strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.golden-rule p { font-size: 14px; margin: 0; color: var(--text); }

/* Tools grid */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 1rem;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: box-shadow .2s;
}
.tool-card:hover { box-shadow: var(--card-shadow); }

.tool-card.tool-card-featured {
  border-color: var(--green);
  border-width: 2px;
  background: var(--green-pale);
}

.tool-card-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 12px;
}
.tool-card.tool-card-featured .tool-card-icon {
  background: var(--white);
}
.tool-card-icon svg { width: 20px; height: 20px; }

.tool-card h3 {
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--text);
}
.tool-card p { font-size: 14px; margin-bottom: 6px; }
.tool-card p:last-child { margin: 0; }

/* Warning grid */
.warning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 1rem 0;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fdecea;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
}
.warning-item svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Resources grid */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 1rem;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.resource-card.resource-card-primary {
  border-color: var(--green);
  border-width: 2px;
  background: var(--green-pale);
}

.resource-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.resource-header svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
.resource-header strong { font-size: 15px; }

.resource-number {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.resource-card p { font-size: 14px; margin-bottom: 10px; }

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
}
.resource-link svg { width: 13px; height: 13px; }

/* ---- INFO PAGE ---- */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 1.5rem 0;
}

.team-member {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  align-items: flex-start;
}

.team-member img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  flex-shrink: 0;
}

.team-member-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 3px;
}
.team-member-info span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.team-member-info p { font-size: 14px; margin-bottom: 6px; }
.team-member-info a { font-size: 13px; font-weight: 600; color: var(--green); }

/* Methodology blocks */
.methodology-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 16px 0;
  overflow: hidden;
}

.methodology-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.methodology-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.methodology-block-header h3 {
  font-size: 16px;
  margin: 0;
}

.methodology-content {
  padding: 16px 18px;
}
.methodology-content ul { margin: .75rem 0; }
.methodology-content ul li { font-size: 14px; }

/* Contact grid */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 1.5rem 0;
}

.contact-item {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  align-items: flex-start;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.contact-item p { font-size: 14px; margin-bottom: 6px; }
.contact-item a { font-size: 14px; font-weight: 600; color: var(--green); }

.contact-note {
  display: flex;
  gap: 12px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
  align-items: flex-start;
  font-size: 14px;
}
.contact-note svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.contact-note p { margin: 0; }

/* PAGE HERO BREADCRUMB */
.page-hero { background: linear-gradient(135deg,#0f2027 0%,#203a43 50%,#1a4a2e 100%); color:#fff; padding:48px 16px 40px; }
.page-hero-inner { max-width:1200px; margin:0 auto; }

/* ===== RESPONSIVE TABLET ===== */
@media (min-width: 600px) {
  .author-profile-card { flex-direction: row; align-items: flex-start; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .warning-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .adm-link-box { flex-direction: row; align-items: center; }
}

/* ===== RESPONSIVE DESKTOP ===== */
@media (min-width: 900px) {
  .header-nav { display: flex; align-items: center; gap: 6px; }
  .header-nav a { color:var(--text); font-size:14px; font-weight:500; padding:6px 12px; border-radius:var(--radius-sm); text-decoration:none; transition:background .15s, color .15s; }
  .header-nav a:hover { background:var(--green-pale); color:var(--green); text-decoration:none; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .expertise-grid { grid-template-columns: repeat(3, 1fr); }
  .methodology-content ul li { font-size: 14px; }
}
