/* ============================================================
   STILEPAGINEMENU.CSS - CSS unificato per pagine menu
   Versione: 1.0
   Basato su sanremo.css con stili specifici per artisti
   Palette: navy #1a3d5c, amber #f5a623, bordeaux #7a1f2b
   Font: Playfair Display (display) + Inter (corpo)
   ============================================================ */

/* ============================================================
   STILEPAGINEMENU.CSS - CSS unificato per pagine menu
   Versione: 1.1 - Aggiunto supporto per pagine canzoniere
   ============================================================ */

/* ============================================================
   SEZIONI FEATURED per Canzoniere
   ============================================================ */
.featured-section,
.archive-section {
    margin: 40px 0;
}

.section-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* ---- Card in Evidenza (per Canzoniere 100 Classici) ---- */
.featured-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.featured-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    width: 100%;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 20px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    text-align: center;
}

.featured-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

.featured-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.featured-card .featured-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.featured-card .featured-subtitle {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.featured-card:hover .featured-subtitle {
    color: var(--amber);
}

/* ---- Responsive per canzoniere ---- */
@media (max-width: 480px) {
    .featured-card {
        max-width: 220px;
        padding: 18px 14px;
    }
    
    .featured-card img {
        max-width: 160px;
    }
    
    .featured-card .featured-title {
        font-size: 14px;
    }
    
    .section-label {
        font-size: 17px;
    }
}


/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ---- TOKEN ---- */
:root {
  --primary:  #1a3d5c;
  --primary2: #112d44;
  --amber:    #f5a623;
  --amber2:   #e09310;
  --amber-tint: #fff3d6;
  --primary-tint: #eaf2f8;
  --sage:     #2d7d5e;
  --bordeaux: #7a1f2b;
  --bg:       #fafaf7;
  --surface:  #ffffff;
  --text:     #222222;
  --muted:    #4a5568;
  --border:   #e2e2dc;
  --radius:   10px;
  --shadow:   0 2px 12px rgba(0,0,0,.08);
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

html, body {
  transform: none !important;
}

/* ============================================================
   HEADER — Grid a 3 colonne: logo | centro | menu+hamburger.
   ============================================================ */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 900;
  background: #ffffff;
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo center right";
  align-items: center;
  column-gap: 20px;
  height: 150px;
}
.site-brand {
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-self: start;
}
.site-logo {
  height: 150px;
  width: auto;
  display: block;
}

/* ---- Colonna centrale: "Ricerca artista" ---- */
.header-center {
  grid-area: center;
  justify-self: center;
  display: flex;
  align-items: center;
}
.quickjump-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.quickjump-wrap::after {
  content: '\25BE';
  position: absolute;
  right: 16px;
  font-size: 11px;
  color: var(--primary);
  pointer-events: none;
  transition: color .2s;
}
.artist-quickjump {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'Inter', Arial, sans-serif;
  padding: 11px 36px 11px 20px;
  border: 1.5px solid var(--primary);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, var(--primary-tint));
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,61,92,.16);
  transition: background .2s, border-color .2s, color .2s, transform .15s, box-shadow .2s;
}
.artist-quickjump:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,61,92,.30);
}
.quickjump-wrap:hover::after,
.quickjump-wrap:focus-within::after {
  color: #ffffff;
}
.artist-quickjump:focus-visible {
  outline: 2px solid var(--primary2);
  outline-offset: 2px;
}
.artist-quickjump:active {
  background: var(--primary2);
  color: #ffffff;
  border-color: var(--primary2);
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(17,45,68,.35);
}

/* ---- Colonna destra: menu principale + hamburger ---- */
.header-right {
  grid-area: right;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}
nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
nav a {
  color: var(--primary);
  text-decoration: none;
  padding: 8px 13px;
  border: 1.5px solid var(--primary);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s;
}
nav a:hover {
  background: var(--primary);
  color: #fff;
}
nav a.active {
  background: var(--primary);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 2;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MENU MOBILE
   ============================================================ */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary);
  z-index: 850;
  padding: 16px 20px 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .3s cubic-bezier(.4,0,.2,1), visibility 0s linear .25s;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .25s ease, transform .3s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 16px;
  font-weight: 500;
  transition: color .15s, padding-left .15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--amber);
  padding-left: 4px;
}
.mobile-nav a.active {
  color: var(--amber);
}

/* ============================================================
   ADSENSE
   ============================================================ */
.banner {
  width: 100%;
  max-width: 728px;
  margin: 32px auto;
  padding: 0 16px;
  text-align: center;
  min-height: 100px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  contain: layout paint;
  background: #fdfdfd;
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner ins.adsbygoogle {
  display: block;
  width: 100% !important;
  height: auto !important;
}
@media (min-width: 600px) {
  .banner { min-height: 250px; }
}
@media (min-width: 992px) {
  .banner { min-height: 280px; }
}

/* ============================================================
   MAIN CONTENT — ARTISTI
   ============================================================ */
.main-content-artists {
  max-width: 1000px;
  margin: 32px auto;
  padding: 0 16px;
}
.main-content-artists h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  color: var(--primary);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.section-intro {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   GRIGLIA ARTISTI — Card con immagine
   ============================================================ */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  text-align: center;
}

.artist-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.artist-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  background: var(--bg);
  border: 2px solid var(--border);
  transition: border-color .25s;
}

.artist-card:hover img {
  border-color: var(--amber);
}

.artist-card .artist-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  line-height: 1.3;
}

.artist-card:hover .artist-name {
  color: var(--primary2);
}

/* ============================================================
   BOTTONE TORNA ALLA HOME
   ============================================================ */
.back-home {
  text-align: center;
  margin: 30px 0 20px;
}
.btn-back {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background .15s, transform .15s;
}
.btn-back:hover {
  background: var(--primary2);
  transform: translateY(-2px);
}

/* ============================================================
   HERO — ricerca Google
   ============================================================ */
.hero {
  background: var(--primary);
  padding: 52px 20px 28px;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  contain: layout paint;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 17px,
    rgba(255,255,255,.06) 17px,
    rgba(255,255,255,.06) 18px
  );
  pointer-events: none;
}

/* ---- SEZIONE ALFABETO ---- */
.alphabet-band {
  background: var(--primary);
  padding: 4px 20px 44px;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  contain: layout paint;
}
.alphabet-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 17px,
    rgba(255,255,255,.06) 17px,
    rgba(255,255,255,.06) 18px
  );
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.hero h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 5vw, 46px);
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.15;
}
.gcse-search {
  width: 90%;
  margin: 20px auto;
  display: block;
}
.search-wrapper {
  width: 90%;
  max-width: 600px;
  margin: 20px auto 40px auto;
  display: block;
  overflow: hidden;
}
.search-wrapper .gcse-search {
  width: 100% !important;
  margin: 0 !important;
}

/* ---- Alfabeto ---- */
.alphabet {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 760px;
  margin: 0 auto;
}
.alphabet a {
  background: rgba(245,166,35,.16);
  border: 1px solid rgba(245,166,35,.35);
  color: #ffe9c2;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
  letter-spacing: .02em;
  min-width: 38px;
  text-align: center;
}
.alphabet a:hover {
  background: var(--amber);
  color: #1a1a1a;
  border-color: var(--amber);
  transform: translateY(-2px);
}
.alphabet a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.alphabet a.active {
  background: var(--amber);
  color: #1a1a1a;
  border-color: var(--amber);
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 32px 20px 24px;
  text-align: center;
  margin-top: 16px;
}
.site-footer p { margin-bottom: 10px; font-size: 14px; }
.site-footer a { color: var(--amber); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.legal-note {
  max-width: 860px;
  margin: 16px auto 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 10000;
}
#cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  background: #fff;
  color: #333;
  padding: 28px 24px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 10001;
}
#cookie-banner p { margin-bottom: 20px; font-size: 15px; line-height: 1.6; }
#cookie-banner a { color: var(--primary); text-decoration: underline; }
#cookie-banner button {
  padding: 11px 28px;
  cursor: pointer;
  background: var(--amber);
  color: #222;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo right"
      "center center";
    height: auto;
    min-height: 90px;
    row-gap: 12px;
    padding: 14px 16px 16px;
  }
  .header-center {
    justify-self: stretch;
  }
  .quickjump-wrap {
    width: 100%;
    justify-content: center;
  }
  .artist-quickjump {
    width: 100%;
    max-width: 340px;
  }
  .header-right nav { display: none; }
  .hamburger { display: flex; }
  .site-logo { height: 80px; }
}

@media (max-width: 768px) {
  .hero { padding: 36px 16px 20px; }
  .alphabet-band { padding: 4px 16px 32px; }
  .hero h2 { font-size: 22px; }

  .main-content-artists h2 { font-size: 22px; }
  .btn-back { padding: 10px 22px; font-size: 14px; }

  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }
  .artist-card { padding: 16px 12px; }
  .artist-card img { width: 70px; height: 70px; }
  .artist-card .artist-name { font-size: 13px; }
}

@media (max-width: 480px) {
  .site-logo { height: 70px; }
  .alphabet a { padding: 8px 12px; font-size: 13px; }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .artist-card { padding: 14px 10px; }
  .artist-card img { width: 65px; height: 65px; }
  .artist-card .artist-name { font-size: 12px; }

  #cookie-banner {
    padding: 20px 16px;
  }
  #cookie-banner p {
    font-size: 14px;
  }
  #cookie-banner button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ============================================================
   ACCESSIBILITÀ — RIDUCE MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

============================================================
   DETTAGLIO CANZONIERE
   ============================================================ */
.album-detail-section {
    max-width: 800px;
    margin: 20px auto 40px;
}

.album-detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow .25s;
}

.album-detail-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.album-cover-link {
    display: block;
    transition: transform .25s;
}

.album-cover-link:hover {
    transform: scale(1.02);
}

.album-cover-link img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    margin-bottom: 20px;
    cursor: pointer;
}

.album-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.album-description {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 20px;
}

.album-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--amber);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    transition: background .2s, transform .15s, box-shadow .2s;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    background: var(--amber2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 166, 35, .35);
}

.btn-download:active {
    transform: translateY(0);
}

/* ---- Responsive dettaglio canzoniere ---- */
@media (max-width: 768px) {
    .album-detail-card {
        padding: 24px 16px;
    }
    
    .album-cover-link img {
        max-width: 200px;
    }
    
    .album-info h3 {
        font-size: 19px;
    }
    
    .album-description {
        font-size: 14px;
    }
    
    .btn-download {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .album-detail-card {
        padding: 18px 12px;
    }
    
    .album-cover-link img {
        max-width: 160px;
    }
    
    .album-info h3 {
        font-size: 17px;
    }
    
    .album-description {
        font-size: 13px;
    }
    
    .btn-download {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ============================================================
   ALBUM DETTAGLIO — Tracklist
   ============================================================ */
.album-tracklist {
    width: 100%;
    max-width: 500px;
    margin: 16px auto;
    text-align: left;
    background: var(--bg);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.album-tracklist h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.album-tracklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.album-tracklist ul li {
    padding: 4px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-weight: 400;
}

.album-tracklist ul li:last-child {
    border-bottom: none;
}

.album-tracklist ul li:hover {
    color: var(--primary);
    padding-left: 4px;
    transition: padding-left .15s, color .15s;
}

.album-links {
    margin-top: 16px;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-tint);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    transition: background .15s, transform .15s, box-shadow .15s;
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,61,92,.25);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* ---- Responsive album detail ---- */
@media (max-width: 768px) {
    .album-tracklist {
        padding: 14px 16px;
        max-width: 100%;
    }
    
    .album-tracklist ul li {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .album-tracklist h4 {
        font-size: 15px;
    }
    
    .btn-secondary {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .album-tracklist {
        padding: 12px 12px;
    }
    
    .album-tracklist ul li {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .album-tracklist h4 {
        font-size: 14px;
    }
    
    .btn-secondary {
        padding: 7px 14px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   INFO SECTION — per info.html
   ============================================================ */
.info-section {
    background: var(--surface);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border-left: 4px solid var(--amber);
}

.info-section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}

.info-section ul {
    padding-left: 24px;
    margin: 10px 0;
}

.info-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 8px;
}

.info-section ul li strong {
    color: var(--primary);
}

.info-section a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.info-section a:hover {
    color: var(--primary2);
}

@media (max-width: 768px) {
    .info-section {
        padding: 18px 16px;
    }
    
    .info-section h3 {
        font-size: 18px;
    }
    
    .info-section p,
    .info-section ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 14px 12px;
    }
    
    .info-section h3 {
        font-size: 16px;
    }
    
    .info-section p,
    .info-section ul li {
        font-size: 13px;
    }
}