/* ============================================
   KIMU FRAMEWORK - CLEAN MINIMAL CSS
   Single file, conflict-free design
   ============================================ */

/* ===== CSS RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: rgb(255, 250, 246);
  overflow-x: hidden;
  padding-top: calc(80px + 1rem); /* Navbar height + 1rem space */
}

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: rgb(255, 250, 246);
  --bg-white: #ffffff;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --warm-brown: rgb(139, 69, 19);
  --deep-brown: rgb(101, 49, 13);
  --border-light: rgba(139, 69, 19, 0.1);
  --shadow-light: rgba(139, 69, 19, 0.08);
  
  /* Footer - Grigio cemento moderno */
  --footer-bg-dark: #2a2a2a;
  --footer-bg-darker: #1f1f1f;
  --footer-text: #e0e0e0;
  --footer-text-muted: #b0b0b0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

ul, ol {
  list-style: none;
}

a {
  color: var(--warm-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--deep-brown);
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: 600;
}

/* ===== LAYOUT CONTAINERS ===== */
.container-minimal {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 250, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.brand-logo {
  height: 35px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  transition: all 0.3s ease;
  border-radius: 6px;
}

.nav-link {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
}

.nav-item:hover {
  background: rgba(139, 69, 19, 0.05);
  border-radius: 6px;
}

.nav-item.active {
  background: rgba(139, 69, 19, 0.1);
  border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--deep-brown);
  background: transparent;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--warm-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
  margin-left: 16px;
  position: relative;
}

.language-toggle {
  position: relative;
  cursor: pointer;
}

.current-language {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  user-select: none;
}

.current-language::after {
  content: '▼';
  margin-left: 8px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.language-toggle:hover .current-language {
  background: var(--bg-light);
  border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.language-toggle:hover .current-language::after {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 140px;
  margin-top: 4px;
}

.language-toggle:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-link {
  display: block;
  padding: 10px 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin: 2px;
}

.language-link:hover {
  background: var(--bg-light);
  color: var(--accent);
  transform: translateX(2px);
}

.language-link.current {
  background: var(--accent);
  color: var(--text-white);
  font-weight: 500;
}

.language-link.current:hover {
  background: var(--accent);
  color: var(--text-white);
  transform: none;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 1rem; /* Ultra-minimal spacing */
}

/* Content Cards */
.hero-content-minimal,
.features-content-minimal,
.philosophy-content-minimal,
.description-content-minimal {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px var(--shadow-light);
  border: 1px solid var(--border-light);
  position: relative;
}

/* Status Content - Transparent */
.status-content-minimal {
  padding: 30px;
}

/* ===== HERO SECTION ===== */
.kimu-hero {
  padding: 0; /* No padding for ultra-compact layout */
  position: relative;
}

/* ===== DECORATIVE BACKGROUND ELEMENT ===== */
.bg-decorative-element {
  position: absolute;
  top: 75%;
  right: -173px;
  transform: translateY(-25%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.bg-decorative-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-wrapper-minimal {
  text-align: center;
  margin-bottom: 32px;
}

.kimu-logo-minimal {
  height: 225px;
  width: auto;
}

.kimu-title-minimal {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-brown);
  text-align: center;
  margin-bottom: 20px;
}

.kimu-subtitle-minimal {
  font-size: 1.1rem;
  color: var(--warm-brown);
  text-align: center;
  margin-bottom: 28px;
  font-style: italic;
  line-height: 1.4;
}

.kimu-quote-minimal {
  font-size: 1.2rem;
  color: var(--warm-brown);
  text-align: center;
  font-style: italic;
  margin: 36px 0;
  line-height: 1.7;
}

/* ===== KIMU MAIN CONTENT SECTION (Two Columns) ===== */
.kimu-main-content-section {
  padding: 0; /* No padding for ultra-compact layout */
  position: relative;
}

.main-content-minimal {
  background: var(--bg-white);
  padding: 40px;
  box-shadow: 0 2px 8px var(--shadow-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

/* ===== DECORATIVE BACKGROUND ELEMENT - LEFT SIDE ===== */
.bg-decorative-element-left {
  position: absolute;
  bottom: -58px;
  left: -45px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.bg-decorative-image-left {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Description Column (Left) */
.description-column-minimal {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.technical-description {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.philosophy-description {
  font-size: 1.1rem;
  color: var(--warm-brown);
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Features Column (Right) */
.features-column-minimal {
  padding: 0;
}

.features-title-minimal {
  font-size: 1.4rem;
  color: var(--deep-brown);
  text-align: left;
  margin-bottom: 24px;
  font-weight: 600;
}

.features-list-minimal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  margin: 0;
}

.feature-item-minimal {
  padding: 2px 0;
  transition: all 0.2s ease;
}

.feature-item-minimal:hover {
  background: rgba(139, 69, 19, 0.02);
}

.feature-item-minimal p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-minimal {
  padding: 0; /* No padding for ultra-compact layout */
}

.philosophy-text-minimal {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 36px;
}

.poetry-section-minimal {
  text-align: center;
}

.poetry-section-minimal p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--warm-brown);
  font-style: italic;
  margin-bottom: 28px;
}

/* ===== STATUS SECTION ===== */
.status-minimal {
  padding: 0; /* No padding for ultra-compact layout */
}

.status-title-minimal {
  font-size: 1.3rem;
  color: var(--warm-brown);
  text-align: center;
  margin-bottom: 24px;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-title-icon {
  height: 4.5rem;
  width: auto;
  opacity: 1;
}

.status-description-minimal {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 48px;
}

.status-actions-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.status-action-left {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--deep-brown);
  text-align: center;
  white-space: nowrap;
}

.status-action-right {
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--deep-brown);
  text-align: center;
  white-space: nowrap;
}

/* ===== GROWING SECTION ===== */
.growing-minimal {
  padding: 0; /* No padding for ultra-compact layout */
}

.growing-content-minimal {
  background: var(--bg-white);
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.growing-text-minimal {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--deep-brown);
  margin: 0;
  font-style: italic;
}

/* ===== FINAL SECTION ===== */
.final-minimal {
  padding: 0; /* No padding for ultra-compact layout */
}

.social-links-minimal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 32px;
}

.social-links-minimal a {
  color: var(--warm-brown);
  transition: all 0.3s ease;
}

.social-links-minimal a:hover {
  color: var(--deep-brown);
  transform: translateY(-2px);
}

.credits-text-minimal {
  text-align: center;
  font-style: italic;
  color: var(--text-medium);
}

/* ===== FOOTER ===== */
.footer-minimal {
  background: linear-gradient(135deg, var(--footer-bg-dark) 0%, var(--footer-bg-darker) 100%);
  color: var(--footer-text);
  padding: 48px 0 24px;
  margin-top: 0.1rem; /* Ultra-minimal spacing */
  position: relative;
}

/* Texture cemento subtle */
.footer-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main-minimal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  margin-bottom: 32px;
  align-items: center;
}

.footer-brand-left {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 180px !important;
  max-width: 200px !important;
  padding-right: 20px !important;
  text-align: center !important;
  overflow: visible !important;
}

.footer-brand-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.footer-logo-minimal {
  height: 93px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

/* Footer Logo Link */
.footer-logo-link {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer-logo-link:hover .footer-logo-minimal {
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.footer-tagline-minimal {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--footer-text-muted);
  margin: 0;
}

/* UnicòVerso Logo in Footer */
.footer-brand-left .footer-unicoverso-logo {
  height: 120px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
  display: block !important;
  margin: 0 auto !important;
  max-height: none !important;
  max-width: 100% !important;
}

.footer-unicoverso-logo {
  height: 120px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Social links nel footer - compatti sotto il logo UnicòVerso */
.footer-social-minimal {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.footer-social-minimal a {
  color: var(--footer-text);
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.footer-social-minimal a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--footer-text);
}

.footer-social-minimal svg {
  width: 20px;
  height: 20px;
}

/* Assicuriamo che la sezione sinistra del footer sia in colonna */
.footer-brand-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.footer-links-minimal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column-minimal h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--footer-text);
}

.footer-column-minimal ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column-minimal a {
  color: var(--footer-text-muted);
  transition: color 0.3s ease;
}

.footer-column-minimal a:hover {
  color: var(--footer-text);
}

.footer-bottom-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(224, 224, 224, 0.2);
}

.footer-legal-minimal p,
.footer-zen-minimal p {
  font-size: 0.9rem;
  color: var(--footer-text-muted);
  margin: 0;
}

.footer-zen-minimal p {
  font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 767px) {
  body {
    padding-top: calc(70px + 1rem); /* Mobile navbar height + 1rem space */
  }
  
  .navbar {
    height: 70px;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 250, 246, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    z-index: 1000;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-link {
    padding: 12px 0;
    text-align: center;
    width: 100%;
    border-radius: 8px;
  }
  
  .container-minimal {
    padding: 0 16px;
  }
  
  .hero-content-minimal,
  .features-content-minimal,
  .philosophy-content-minimal,
  .description-content-minimal {
    padding: 24px;
  }
  
  .status-content-minimal {
    padding: 24px;
  }
  
  .kimu-title-minimal {
    font-size: 1.8rem;
  }
  
  .kimu-subtitle-minimal {
    font-size: 1rem;
  }
  
  .kimu-logo-minimal {
    height: 205px;
  }
  
  .main-content-minimal {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }
  
  .description-column-minimal {
    justify-content: flex-start;
  }
  
  .bg-decorative-element {
    right: -115px;
    top: 85%;
  }
  
  .bg-decorative-image {
    max-width: 200px;
  }
  
  .bg-decorative-element-left {
    right: -20px;
    left: auto;
    bottom: -20px;
  }
  
  .bg-decorative-image-left {
    max-width: 200px;
  }
  
  .features-title-minimal {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .feature-item-minimal {
    padding: 3px 0;
  }
  
  .feature-item-minimal p {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .footer-main-minimal {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand-left {
    justify-content: center;
    margin-bottom: 20px;
    min-width: auto;
  }
  
  .footer-brand-right {
    align-items: center;
    text-align: center;
    margin-top: 20px;
    min-width: auto;
  }
  
  .footer-links-minimal {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom-minimal {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  /* Footer social responsive */
  .footer-social-minimal {
    gap: 12px;
    margin-top: 6px;
  }
  
  .footer-social-minimal svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .hero-content-minimal,
  .features-content-minimal,
  .philosophy-content-minimal,
  .growing-content-minimal,
  .description-content-minimal {
    padding: 20px;
  }
  
  .status-content-minimal {
    padding: 20px;
  }
  
  .kimu-title-minimal {
    font-size: 1.8rem;
  }
  
  .bg-decorative-element {
    right: -10px;
    top: 70%;
  }
  
  .bg-decorative-image {
    max-width: 150px;
  }
  
  .bg-decorative-element-left {
    right: -10px;
    left: auto;
    bottom: -15px;
  }
  
  .bg-decorative-image-left {
    max-width: 150px;
  }
  
  section {
    margin-bottom: 1rem; /* Same ultra-minimal spacing on mobile */
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-16 {
  margin-top: 16px;
}

.mt-32 {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .status-action-left,
  .status-action-right {
    font-size: 1.2rem;
  }
  
  /* Forza dimensioni logo UnicòVerso per desktop */
  .footer-unicoverso-logo,
  .footer-brand-left .footer-unicoverso-logo {
    height: 120px !important;
    width: auto !important;
    min-height: 120px !important;
    max-width: 100% !important;
  }
  
  .footer-brand-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-width: 180px !important;
    max-width: 200px !important;
  }
}

@media (max-width: 767px) {
  .status-actions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: auto;
    padding: 0;
  }
  
  .status-action-left,
  .status-action-right {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    font-size: 1rem;
    white-space: normal;
  }
}

/* ===== KIMU REFERENCES SECTION ===== */
.kimu-references-section {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.references-content-minimal {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Badges Row */
.badges-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.badge-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.badge-link img {
  height: 22px;
  border-radius: 4px;
}

/* Project Links Row */
.project-links-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.project-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  color: var(--warm-brown);
  text-decoration: none;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.project-btn:hover {
  background: var(--warm-brown);
  color: white;
  border-color: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.project-btn.primary {
  background: var(--warm-brown);
  color: white;
  border-color: var(--warm-brown);
}

.project-btn.primary:hover {
  background: var(--deep-brown);
  border-color: var(--deep-brown);
}

.project-btn svg {
  flex-shrink: 0;
}

/* References Description */
.references-description {
  margin-top: 1rem;
}

.references-description p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .kimu-references-section {
    padding: 3rem 0;
  }
  
  .badges-row {
    gap: 8px;
    margin-bottom: 2.5rem;
  }
  
  .badge-link img {
    height: 20px;
  }
  
  .project-links-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .project-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 0.9rem;
    padding: 14px 20px;
  }
  
  .references-description p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .badges-row {
    gap: 6px;
  }
  
  .badge-link img {
    height: 18px;
  }
}
