/* ============================================================
   PhD CS UNIBA — Modern Jekyll Theme
   ============================================================ */

/* === Custom Properties === */
:root {
  /* Brand */
  --brand:        #003B7A;
  --brand-dark:   #002A58;
  --brand-hover:  #004D9F;
  --brand-light:  #EBF2FF;
  --brand-lighter:#F5F8FF;

  /* Neutrals */
  --bg:         #ffffff;
  --surface:    #F8FAFC;
  --surface-2:  #F1F5F9;
  --text:       #0F172A;
  --text-2:     #1E293B;
  --muted:      #64748B;
  --muted-2:    #94A3B8;
  --border:     #E2E8F0;
  --border-2:   #CBD5E1;

  /* Accent & Semantic */
  --accent:     #0EA5E9;
  --success:    #10B981;
  --focus:      #FBBF24;

  /* Typography */
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', ui-sans-serif, sans-serif;

  /* Radii */
  --r-xs: 5px;
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 20px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  180ms;
  --t:    var(--dur) var(--ease);

  /* Layout */
  --maxw: 1120px;
  --pad:  clamp(16px, 3vw, 32px);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
li { margin-bottom: 0.3em; }
h1, h2, h3, h4 { line-height: 1.2; }

/* === Links === */
a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--t);
}
a:hover {
  color: var(--brand-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* === Layout === */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.header-top { padding: 12px 0; }

.brand-row {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: opacity var(--t);
}
.brand:hover { opacity: 0.82; text-decoration: none; }

.brand img {
  height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.brand-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.25;
}
.brand-title strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.brand-title span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.header-nav {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 0;
  gap: 2px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 9px 14px;
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--t);
}
.nav-toggle:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: 0.845rem;
  font-weight: 500;
  transition: all var(--t);
  white-space: nowrap;
}
.nav-links a:hover {
  background: var(--brand-light);
  color: var(--brand);
  text-decoration: none;
}
.nav-links a[aria-current="page"] {
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 600;
}

/* ============================================================
   DROPDOWN NAV
   ============================================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: var(--r-sm);
  border: none;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 0.845rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.nav-dropdown-btn:hover,
.nav-dropdown-btn.active {
  background: var(--brand-light);
  color: var(--brand);
}
.nav-dropdown.open .nav-dropdown-btn {
  background: var(--brand-light);
  color: var(--brand);
}

.dropdown-chevron {
  flex-shrink: 0;
  transition: transform var(--t);
}
.nav-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 210px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 5px;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--t);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--brand-light);
  color: var(--brand);
  text-decoration: none;
}
.nav-dropdown-menu a[aria-current="page"] {
  font-weight: 600;
}

.dropdown-badge {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(16,185,129,0.12);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.2);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile: dropdown shows inline, not floating */
@media (max-width: 720px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-btn {
    width: 100%;
    justify-content: space-between;
    border-radius: var(--r-sm);
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--brand-lighter);
    border-radius: var(--r-sm);
    margin: 2px 0;
    padding: 3px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(52px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at -5% -5%, rgba(0,59,122,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 105% 105%, rgba(14,165,233,0.07) 0%, transparent 55%),
    var(--bg);
}

/* Subtle dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,59,122,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: start;
  position: relative;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.hero-intro {
  font-size: 1.075rem;
  color: var(--text-2);
  margin: 0 0 22px;
  line-height: 1.72;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.775rem;
  font-weight: 600;
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid rgba(0,59,122,0.14);
  letter-spacing: 0.01em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
}
.btn:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transform: translateY(-1px);
  color: var(--text);
}
.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,59,122,0.22);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(0,59,122,0.28);
  color: #fff;
}

/* ============================================================
   ESSENTIAL INFO CARD (HERO ASIDE)
   ============================================================ */
.essential-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 22px;
}

.essential-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}

.kpi {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px;
  background: var(--surface);
  transition: all var(--t);
}
.kpi:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
}
.kpi strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 4px;
}
.kpi span,
.kpi a {
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
}
.kpi a:hover { color: var(--brand); text-decoration: underline; }

.essential-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(28px, 4vw, 52px) 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ============================================================
   ITEM CARDS
   ============================================================ */
.item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  background: var(--bg);
  transition: all var(--t);
}
.item:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.item h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.item small { color: var(--muted); }
.item ul { margin: 8px 0 0; }
.item p { color: var(--text-2); }
.item p:last-child { margin-bottom: 0; }

/* ============================================================
   NEWS & SEMINAR ITEMS
   ============================================================ */
.news-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-item-link + .news-item-link { margin-top: 10px; }
.news-item-link:hover { text-decoration: none; }

.news-item,
.seminar-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  background: var(--bg);
  transition: all var(--t);
}
.news-item-link:hover .news-item,
.news-item-link:hover .seminar-item {
  border-color: var(--brand-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  background: var(--brand-lighter);
}

.news-date {
  font-size: 0.775rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.news-title {
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--text);
  line-height: 1.35;
}

.news-excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.52;
}

.seminar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 7px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.tag-upcoming {
  background: rgba(16,185,129,0.10);
  color: #059669;
  border-color: rgba(16,185,129,0.22);
}
.tag-past {
  background: var(--surface-2);
  color: var(--muted-2);
  border-color: var(--border);
}

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.page { padding: clamp(24px, 4vw, 52px) 0 clamp(40px, 6vw, 72px); }

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--muted); transition: color var(--t); }
.breadcrumb a:hover { color: var(--brand); text-decoration: none; }
.breadcrumb-sep { color: var(--border-2); }

.page-header { margin-bottom: 32px; }

.page h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.page-intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.68;
}

/* ============================================================
   PROSE
   ============================================================ */
.prose { max-width: 740px; }

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--text);
}

.prose p { color: var(--text-2); }
.prose ul, .prose ol { padding-left: 1.5em; margin: 0 0 16px; }
.prose li { margin-bottom: 5px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-photo-small {
  float: right;
  width: 260px;
  margin: 0 0 20px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg);
}

.contact-photo-small img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 720px) {
  .contact-photo-small {
    float: none;
    width: 100%;
    max-width: 360px;
    margin: 0 0 24px;
  }
}

/* ============================================================
   CALLOUT
   ============================================================ */
.callout {
  border-left: 3px solid var(--brand);
  background: var(--brand-lighter);
  padding: 16px 20px;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 24px 0;
}
.callout p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.94rem;
}
.callout p + p { margin-top: 8px; }

/* ============================================================
   DOCUMENT LIST
   ============================================================ */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.doc-list li + li { border-top: 1px solid var(--border); }

.doc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.925rem;
  transition: all var(--t);
}
.doc-link:hover {
  background: var(--brand-lighter);
  color: var(--brand);
  text-decoration: none;
}

.doc-icon {
  width: 34px;
  height: 34px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ============================================================
   BACK LINK
   ============================================================ */
.back-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t);
}
.back-link:hover { color: var(--brand); text-decoration: none; }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(32px, 5vw, 56px) 0 clamp(20px, 3vw, 32px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 7px; }

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  font-size: 0.925rem;
}
.footer-brand-sub { color: var(--muted); font-size: 0.85rem; }
.footer-brand-addr {
  color: var(--muted-2);
  font-size: 0.8rem;
  line-height: 1.55;
  margin-top: 2px;
}
.footer-brand-updated {
  color: var(--muted-2);
  font-size: 0.75rem;
  margin-top: 4px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 10px;
}

.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--text); text-decoration: none; }

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom > p {
  font-size: 0.8rem;
  color: var(--muted-2);
  margin: 0;
}

.footer-legal { display: flex; gap: 16px; }
.footer-legal a {
  font-size: 0.8rem;
  color: var(--muted-2);
  transition: color var(--t);
}
.footer-legal a:hover { color: var(--muted); text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    padding: 8px 0 4px;
    flex-direction: column;
    gap: 1px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { justify-content: flex-start; }
  .navbar { flex-wrap: wrap; justify-content: space-between; }

  .kpi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cta-row { flex-direction: column; }
  .cta-row .btn { justify-content: center; }
}

/* ============================================================
   TABLES
   ============================================================ */
.phd-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.phd-table thead {
  background-color: #f3f4f6;
}

.phd-table th {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid #d1d5db;
  font-weight: 600;
}

.phd-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.phd-table tbody tr:hover {
  background-color: #f9fafb;
}

.phd-table .center {
  text-align: center;
}

@media (max-width: 768px) {
  .phd-table {
    font-size: 0.85rem;
  }

  .phd-table th,
  .phd-table td {
    padding: 8px;
  }
}

/* ============================================================
   COURSES
   ============================================================ */
.course-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary, #1f4e79);
}

.course-details summary:hover {
  text-decoration: underline;
}

.course-details p {
  margin: 0.65rem 0 0;
  color: var(--muted, #4b5563);
  line-height: 1.55;
}

.course-details[open] {
  padding-bottom: 0.25rem;
}