/* Modern CSS variables and reset */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300..900;1,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Brand Charter Color System (Light Mode Default) */
  --primary: #9b4fd9;          /* Violet arc-en-ciel */
  --primary-light: #b274e6;
  --primary-dark: #7d33ba;
  
  --accent: #ff8210;           /* Orange vif */
  --accent-light: #ffa854;
  --accent-dark: #cc6200;
  
  --sunny: #ffc94a;            /* Jaune chaleureux */
  --sunny-light: #ffe19e;
  
  --sky: #40cfde;              /* Bleu turquoise / vert d'eau */
  --sky-light: #a1ebf2;
  
  --bg-page: #f5f5f5;          /* Gris très clair */
  --bg-card: #ffffff;
  --bg-card-hover: #eaeaea;
  --border: #dddddd;
  --text-main: #2b2b2b;        /* Gris foncé */
  --text-muted: #666666;
  --text-inverse: #ffffff;
  
  /* Shadows and Glassmorphism */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Device-based Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --primary: #b274e6;          /* Lighter violet for dark mode contrast */
    --primary-light: #c795ed;
    --primary-dark: #9b4fd9;
    --accent: #ffa854;           /* Lighter orange */
    --accent-light: #ffc285;
    --accent-dark: #ff8210;
    --sunny: #ffe19e;
    --sunny-light: #fff0d1;
    --sky: #a1ebf2;
    --sky-light: #c2f3f7;

    --bg-page: #0b0f19;
    --bg-card: #151c2c;
    --bg-card-hover: #1e2638;
    --border: #222f47;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(255, 255, 255, 0.05);
  }
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  color: var(--text-main);
}

.logo-text span {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background-color: var(--bg-card-hover);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text-inverse);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(255, 130, 16, 0.3);
  color: var(--text-inverse);
}

.cta-button:active {
  transform: translateY(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

/* Cheerful Hero Section */
.hero {
  padding: 7rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3ebfa 0%, #e8fcfd 50%, #fff9eb 100%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-normal);
}

@media (prefers-color-scheme: dark) {
  .hero {
    background: linear-gradient(135deg, #1b1226 0%, #0d2124 50%, #261f0f 100%);
  }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.secondary-button {
  background-color: var(--bg-card);
  color: var(--text-main);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.secondary-button:hover {
  transform: translateY(-2px);
  background-color: var(--bg-card-hover);
  color: var(--text-main);
  border-color: var(--primary-light);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-bg {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: inline-block;
  background: rgba(155, 79, 217, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* Card Styles */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: rgba(155, 79, 217, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Event Featured Card */
.event-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-page));
  border: 2px solid var(--primary-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--accent);
  color: var(--text-inverse);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Social Posts Section */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.social-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.social-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.social-platform svg {
  width: 1.25rem;
  height: 1.25rem;
}

.platform-facebook { color: #1877f2; }
.platform-instagram { color: #e1306c; }

.social-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-img-wrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--border);
  position: relative;
}

.social-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.social-card:hover .social-img {
  transform: scale(1.05);
}

.social-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Document Lists (Newsletters & Councils) */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.doc-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.doc-item:hover {
  transform: translateX(5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.doc-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.doc-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 130, 16, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.doc-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.doc-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.doc-download-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-page);
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.doc-item:hover .doc-download-btn {
  background-color: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}

/* Bureau Section & Private Bureau Portal */
.bureau-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.bureau-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.bureau-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light), var(--sunny-light));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  font-weight: 800;
  font-size: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.bureau-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bureau-role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* Lock screen for private portal */
.lock-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lock-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.lock-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 201, 74, 0.08);
  color: var(--sunny);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.lock-icon svg {
  width: 2rem;
  height: 2rem;
}

/* Event Detail Page Specifics */
.event-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, rgba(155, 79, 217, 0.08) 0%, rgba(255, 130, 16, 0.05) 100%);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.event-hero .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.event-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.event-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.event-hero-meta-item {
  background: var(--bg-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.event-hero-meta-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.event-hero-meta-item p {
  font-weight: 700;
  font-size: 1rem;
}

.event-hero-action {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.event-hero-action p {
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.info-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.info-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.info-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Form / Administration Style */
.admin-container {
  padding: 3rem 0;
  max-width: 850px;
  margin: 0 auto;
}

.admin-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 79, 217, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-sub-section {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.admin-sub-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.admin-list-item {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
}

.admin-list-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.btn-danger {
  background: var(--accent);
}
.btn-danger:hover {
  background: var(--accent-dark);
  box-shadow: 0 5px 10px -3px rgba(255, 130, 16, 0.3);
}

/* Footer */
footer {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.footer-about p {
  margin-top: 0.5rem;
  max-width: 320px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links-footer {
  display: flex;
  gap: 1rem;
}

.social-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-page);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  color: var(--text-inverse);
  transform: translateY(-2px);
}

.social-icon-btn.fb:hover { background-color: #1877f2; border-color: #1877f2; }
.social-icon-btn.ig:hover { background-color: #e1306c; border-color: #e1306c; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .event-hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .grid-3, .grid-2, .social-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    gap: 2rem;
  }
  
  /* Navigation mobile behavior */
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 4.5rem;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    display: none;
    box-shadow: var(--shadow-lg);
  }
  
  nav.open {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }
  
  .cta-button {
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Skeleton Loading Animation */
@keyframes skeleton-loading {
  0% {
    background-color: var(--border);
  }
  100% {
    background-color: var(--bg-card-hover);
  }
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 0.75rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-title {
  height: 1.5rem;
  margin-bottom: 1rem;
  width: 40%;
}
