@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&family=Dancing+Script:wght@700&display=swap');

:root {
  --bg-color: #050505;
  --bg-grid: rgba(255, 255, 255, 0.03);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --accent-blue: #3b82f6;
  --accent-blue-glow: rgba(59, 130, 246, 0.5);
  --accent-amber: #f59e0b;
  --accent-amber-glow: rgba(245, 158, 11, 0.3);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.15);
  --glass-bg: rgba(15, 15, 20, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  /* High-tech grid background */
  background-image: 
    radial-gradient(circle at 15% 50%, var(--accent-blue-glow) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, var(--accent-amber-glow) 0%, transparent 25%),
    linear-gradient(var(--bg-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #93c5fd, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
  text-shadow: 0 0 30px rgba(147, 197, 253, 0.2);
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue-glow);
  border-radius: 2px;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

p.subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem;
}

p {
  color: var(--text-secondary);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(5, 5, 5, 0.7);
  border-bottom: 1px solid var(--border-color);
  z-index: 50;
  padding: 1.2rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.logo span {
  color: var(--accent-blue);
}

/* Hero Section */
.hero {
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
}

/* Animated decorative elements */
.hero-glow, .hero-glow-alt {
  display: none; /* Disabled in favor of body background grid/glows */
}

/* Course Details */
.course-details {
  padding: 2rem 0 4rem;
  position: relative;
}

.course-header {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 10px 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.course-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.course-header p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #d4d4d8;
  position: relative;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
}

.course-header p strong {
  color: var(--accent-blue);
  font-weight: 700;
  width: 140px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.course-objectives {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.course-objectives ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.course-objectives li {
  position: relative;
  padding-left: 2rem;
  color: #e4e4e7;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.course-objectives li:hover {
  color: #fff;
  transform: translateX(5px);
}

.course-objectives li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-amber);
  box-shadow: 0 0 10px var(--accent-amber-glow);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.module-card {
  padding: 2.5rem;
}

.module-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.module-card p strong {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'JetBrains Mono', monospace;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 0.3rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.module-card ul {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

.module-card ul li {
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.module-card ul li:hover {
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Cards (High Tech Style) */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0.5;
  transition: opacity 0.3s;
}

/* Light sweep effect on hover */
.card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.card:hover::after {
  top: 100%;
  left: 100%;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(25, 25, 30, 0.8);
  border-color: var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(59, 130, 246, 0.15);
}

.card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-blue);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
  transition: all 0.3s;
}

.card:hover .card-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #fff;
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 20px var(--accent-blue-glow);
  transform: scale(1.05);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-content {
  flex-grow: 1;
}

.card-action {
  margin-top: 2rem;
}

/* High-tech Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
  color: #ffffff;
  width: 100%;
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

/* Button pulse/sweep */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #60a5fa 0%, var(--accent-blue) 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  border-color: rgba(255,255,255,0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.animate-fade-up {
  opacity: 0; /* Ensures invisible before animation */
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 0.15s; }
.delay-200 { animation-delay: 0.3s; }
.delay-300 { animation-delay: 0.45s; }

/* Trainer logo */
.trainer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  backdrop-filter: blur(10px);
}

.trainer-logo-icon {
  width: 44px;
  height: 44px;
  background: #1c1c1e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.trainer-logo-name {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.trainer-logo-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'JetBrains Mono', monospace;
  display: block;
  margin-bottom: 0.1rem;
}

/* Resources group titles */
.resources-group-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-top: 2.5rem;
  margin-bottom: -0.5rem;
}

/* File type badges */
.file-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 0.3rem;
  margin-bottom: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
}

.badge-pptx {
  background: rgba(234, 88, 12, 0.15);
  color: #fb923c;
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.badge-docx {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-pdf {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.card-icon.icon-pdf {
  color: #f87171;
}

.card:hover .card-icon.icon-pdf {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

/* Featured card (PromptBook) */
.card-featured {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.1), 0 10px 40px rgba(0,0,0,0.5);
}

/* Orange accent for pptx icons */
.card-icon.icon-pptx {
  color: #fb923c;
}

.card:hover .card-icon.icon-pptx {
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.3);
}

/* Coming Soon Box */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

@keyframes dotBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.4; }
  50%       { transform: translateY(-6px); opacity: 1; }
}

.coming-soon-box {
  margin-top: 4rem;
  border-radius: 1.5rem;
  padding: 2px;
  background: linear-gradient(135deg, #4ade80, #22d3ee, #818cf8, #4ade80);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 0 50px rgba(74, 222, 128, 0.2), 0 0 100px rgba(34, 211, 238, 0.1);
}

.coming-soon-inner {
  background: #0a0f14;
  border-radius: calc(1.5rem - 2px);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coming-soon-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(74, 222, 128, 0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 120%, rgba(34, 211, 238, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.4rem;
}

.coming-soon-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: blinkDot 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.coming-soon-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.coming-soon-highlight {
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-text {
  font-size: 1rem;
  color: #a1a1aa;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.coming-soon-text strong {
  color: #e4e4e7;
}

.coming-soon-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2rem;
}

.coming-soon-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: dotBounce 1.4s ease-in-out infinite;
}

.coming-soon-dots span:nth-child(2) { animation-delay: 0.2s; background: #22d3ee; }
.coming-soon-dots span:nth-child(3) { animation-delay: 0.4s; background: #818cf8; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3rem 0 2.5rem;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.footer-meta {
  text-align: right;
}

.footer-funding {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
}

.footer-funding strong {
  color: var(--accent-blue);
}

.footer-copy {
  font-size: 0.8rem;
  color: #52525b;
  margin: 0;
}

/* Digital Smart — Header Badge */
.ds-header-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  background: rgba(35, 72, 122, 0.18);
  border: 1px solid rgba(35, 72, 122, 0.45);
  border-radius: 0.7rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.ds-header-badge:hover {
  background: rgba(35, 72, 122, 0.3);
  border-color: rgba(35, 72, 122, 0.7);
  box-shadow: 0 0 18px rgba(35, 72, 122, 0.35);
}

.ds-header-icon {
  width: 38px;
  height: 38px;
  background: #23487A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(35, 72, 122, 0.5);
}

.ds-header-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ds-header-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ds-header-sub {
  font-size: 0.58rem;
  color: var(--text-secondary);
  display: block;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* Digital Smart — Featured Card (Partners section) */
.ds-featured-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(250, 247, 240, 0.97);
  border: 1px solid rgba(35, 72, 122, 0.2);
  border-radius: 1.25rem;
  padding: 1.75rem 2.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transition: box-shadow 0.3s ease;
}

.ds-featured-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(35,72,122,0.3);
}

/* CSS crop: mostra solo la porzione Digital Smart da loghi.png (5184×800) */
/* Bounds originali: x=354–720 (366px), y=144–460 (316px) — scale 0.49 */
.ds-featured-crop {
  width: 180px;
  height: 155px;
  flex-shrink: 0;
  background-image: url('loghi.png');
  background-size: auto 392px;
  background-position: -174px -71px;
  background-repeat: no-repeat;
}

.ds-featured-body {
  flex: 1;
}

.ds-feat-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  color: #23487A;
  margin-bottom: 0.4rem;
}

.ds-feat-name {
  font-size: 1.9rem;
  font-weight: 800;
  color: #23487A;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.ds-feat-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

.ds-feat-desc strong {
  color: #23487A;
  font-weight: 600;
}

/* Partners / Loghi Istituzionali */
.partners-section {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border-color);
}

.partners-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #52525b;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1.5rem;
}

.partners-strip {
  background: rgba(250, 247, 240, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: box-shadow 0.3s ease;
}

.partners-strip:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
}

.partners-logos {
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .course-objectives ul, .modules-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-inner {
    padding: 2rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .partners-strip {
    padding: 1.25rem 1rem;
  }

  .partners-logos {
    max-height: 52px;
  }

  .ds-header-badge {
    display: none;
  }

  .ds-featured-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.25rem;
  }

  .ds-feat-name {
    font-size: 1.5rem;
  }
}
