/* =====================
   Global Reset & Body
===================== */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  color: #333;
  font-size: 20px;
}

/* Only content pages (algorithms, datasets, etc.) */
body.content-page {
  padding-top: 170px; /* push content below navbar */
}

/* =====================
   Navbar
===================== */
/* =====================
   Navbar (UNIFIED)
===================== */
:root{
  --nav-h: 148px;              /* desktop header height */
  --nav-h-sm: 120px;           /* mobile header height */
  --nav-bg: rgba(26,37,47,.9);
  --nav-bg-solid: #1a252f;
  --brand: #00bcd4;
}

nav {
  height: var(--nav-h);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: var(--nav-bg);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  z-index: 1000;
  transition: background 0.3s;
  backdrop-filter: saturate(180%) blur(6px);
}
nav.scrolled { background: var(--nav-bg-solid); }

.logo img {
  height: calc(var(--nav-h) - 20px);  /* keeps ~10px vertical padding top/btm */
  width: auto; display: block;
}

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a {
  color: #fff; text-decoration: none;
  margin: 0 15px; display: flex; align-items: center;
  font-size: 1.3rem;                    /* unified size (was 1.7rem) */
  transition: color 0.25s ease;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--brand); }

.menu-toggle { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
  display: none; position: absolute; top: 100%; left: 0;
  background: rgba(26,37,47,.95);
  list-style: none; padding: 10px 0; margin: 0;
  min-width: 220px; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.dropdown-content li a {
  display: block; color: #fff; padding: 10px 16px;
  text-decoration: none; font-size: 1rem; white-space: nowrap;
}
.dropdown-content li a:hover { background: var(--brand); color: #fff; }
.dropdown:hover .dropdown-content { display: block; }

/* Social icons in header */
.social-icons { display: flex; align-items: center; margin-left: 20px; }
.social-icons a { color: #fff; font-size: 1.4rem; margin-left: 16px; transition: color .25s; }
.social-icons a:hover { color: var(--brand); }

/* Page offset so content isn’t hidden under fixed nav */
body.content-page { padding-top: var(--nav-h); }

/* Index slider offset (keeps slides snug under nav) */
/* .slider { margin-top: calc(var(--nav-h) - 22px); } */

/* Mobile */
@media (max-width: 768px){
  nav { height: var(--nav-h-sm); padding: 8px 16px; }
  .logo img { height: calc(var(--nav-h-sm) - 20px); }
  body.content-page { padding-top: var(--nav-h-sm); }

  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    background: #1a252f; position: absolute; top: 100%; right: 0; width: 240px;
    padding: 10px 0; border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
  }
  .nav-links.active { display: flex; }
  .nav-links li a { padding: 10px 16px; margin: 0; font-size: 1.1rem; }

  .dropdown:hover .dropdown-content { display: none; } /* disable hover on touch */
  .menu-toggle { display: block; }
  .slider { margin-top: calc(var(--nav-h-sm) - 18px); }
}


/* =====================
   Social Icons
===================== */
.social-icons { display: flex; align-items: center; margin-left: 20px; }
.social-icons a { color: white; font-size: 2rem; margin-left: 20px; transition: color 0.3s; }
.social-icons a:hover { color: #00bcd4; }

/* =====================
   Hero Slider (RESTORED)
===================== */
.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin-top: calc(var(--nav-h) - 0px);
}
.slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0; transition: opacity 1s ease-in-out;
  background-size: cover; background-repeat: no-repeat; background-position: center;
}
.slide.active { opacity: 1; }
.slide::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay like original */
  z-index: 1;
}
.slide-content {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: white; text-align: center; z-index: 2; padding: 0 15px;
}
.slide-content h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.slide-content p { font-size: 1.3rem; }

/* Slider controls */
.slider-controls {
  position: absolute; top: 50%; width: 100%;
  display: flex; justify-content: space-between;
  z-index: 3; transform: translateY(-50%);
}
.control-btn {
  background: rgba(255,255,255,0.2);
  border: none; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s;
}
.control-btn:hover { background: rgba(255,255,255,0.4); }
.control-btn i { font-size: 20px; color: rgba(0, 188, 212); }

/* =====================
   Containers & Sections
===================== */
.container { max-width: 1200px; margin: 2rem auto; padding: 0 20px; }
section { margin-bottom: 3rem; opacity: 1; transform: none; scroll-margin-top: 170px; }
h1, h2 { color: #2d3e50; }
h2 { border-bottom: 2px solid #eee; padding-bottom: 0.5rem; margin-bottom: 1rem; }
.section p, section p { font-size: 1.1rem; }
.justified-text { text-align: justify; }
.muted { color: #666; font-size: 0.95rem; text-align: center; margin: -1rem 0 1.5rem; }

/* =====================
   Back To Top (RESTORED)
===================== */
#backToTop {
  position: fixed; bottom: 30px; right: 20px;
  background: #00bcd4; color: white; border: none;
  padding: 10px 15px; border-radius: 50%;
  cursor: pointer; display: none; z-index: 100;
}
#backToTop:hover { background: #0097a7; }

/* =====================
   Footer
===================== */
footer { text-align: center; background: rgba(26,37,47,.9); color: white; padding: 15px; margin-top: 20px; }
footer .social-icons { justify-content: center; margin-top: 10px; }

/* =====================
   Publications
===================== */
/* =====================
   Publications Page
===================== */

/* Headings */
h1, h2 {
  text-align: center;
  color: #2d3e50;
  font-weight: 600;
  margin: 2rem 0 1.5rem;
  position: relative;
}

h1::after, h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #00bcd4;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Publications list */
.publications-list {
  list-style: none;
  padding-left: 0;
  max-width: 950px;
  margin: 0 auto 3rem;
}

.publications-list li {
  background: #fff;
  margin-bottom: 20px;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-size: 1rem;
  line-height: 1.6;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.publications-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.publications-list strong {
  color: #1a252f;
}

.publications-list em {
  color: #555;
}

.publications-list a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 500;
  margin-left: 8px;
}

.publications-list a:hover {
  text-decoration: underline;
}

/* Muted text helper */
.muted {
  color: #777;
  font-size: 0.95rem;
  text-align: center;
  margin: -1rem 0 1.5rem;
}


/* =====================
   Team
===================== */
.team-section {
  margin: 2.5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 22px;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 4px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.team-member h3 {
  margin: 12px 0 6px;
  color: #00bcd4;
  font-size: 1.15rem;
}

.team-member p {
  font-size: 0.95rem;
  color: #555;
}

/* first <p> inside each card holds the links: tighten spacing */
.team-member > p:first-of-type {
  margin-bottom: 10px;
}

/* Scholar / LinkedIn pill links (keep your classes) */
.scholar-link,
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}

/* Google Scholar pill (brand = teal) */
.scholar-link {
  color: #00bcd4;
  background: #eaf9fc;
  border-color: #bfeaf2;
}
.scholar-link:hover {
  background: #00bcd4;
  color: #fff;
  border-color: #00bcd4;
}

/* LinkedIn pill (brand = LinkedIn blue) */
.linkedin-link {
  color: #0077b5;
  background: #eef6fb;
  border-color: #cfe5f4;
  margin-left: 10px; /* preserve your spacing */
}
.linkedin-link:hover {
  background: #0077b5;
  color: #fff;
  border-color: #0077b5;
}

.scholar-link i,
.linkedin-link i {
  margin-right: 2px; /* subtle spacing before label */
}

/* Keep your justified bio text */
.justified-text { text-align: justify; }

/* Responsive tweaks */
@media (max-width: 480px) {
  .team-member img { width: 110px; height: 110px; }
  .scholar-link, .linkedin-link { font-size: 0.9rem; padding: 6px 10px; }
}
/* Team cards: make the first link row (Scholar/LinkedIn) pill-style */
.team-member > p:first-of-type a {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  margin-right: 10px;
}

/* Google Scholar pill */
.team-member > p:first-of-type a[href*="scholar.google."] {
  color: #00bcd4;
  background: #eaf9fc;
  border-color: #bfeaf2;
}
.team-member > p:first-of-type a[href*="scholar.google."]:hover {
  background: #00bcd4;
  color: #fff;
  border-color: #00bcd4;
}

/* LinkedIn pill */
.team-member > p:first-of-type a[href*="linkedin.com"] {
  color: #0077b5;
  background: #eef6fb;
  border-color: #cfe5f4;
}
.team-member > p:first-of-type a[href*="linkedin.com"]:hover {
  background: #0077b5;
  color: #fff;
  border-color: #0077b5;
}

/* Icon spacing */
.team-member > p:first-of-type a i { margin-right: 4px; }


/* =====================
   Events Upcoming and Past
===================== */
.events-section { margin: 2.5rem 0; }

.event-grid {
  display: grid;
  gap: 28px;
  margin-top: 22px;
  grid-template-columns: 1fr;              /* default: 1 column */
}

@media (min-width: 992px){
  .event-grid { grid-template-columns: 1fr 1fr; }  /* desktop: 2 columns */
}
/* keep it 2 columns even on very wide screens */
@media (min-width: 1400px){
  .event-grid { grid-template-columns: 1fr 1fr; }
}

.event-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 18px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  border-left: 5px solid #00bcd4;          /* accent */
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.event-card h3 {
  color: #1a252f;
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}
.event-card p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0.35rem 0;
}
.event-card p strong { color: #00bcd4; }

/* --- Links: remove blue underline; style the CTA --- */
.event-card a { text-decoration: none; }
.event-card a:hover { text-decoration: none; }

.event-card .learn-more-btn {
  align-self: flex-start;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #00bcd4;
  color: #fff;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.1s ease;
  margin-top: auto;                         /* stick to bottom */
}
.event-card .learn-more-btn:hover { background: #0097a7; }
.event-card .learn-more-btn:active { transform: translateY(1px); }

@media (max-width: 480px){
  .event-card { padding: 18px; }
  .event-card h3 { font-size: 1.05rem; }
}


/* =====================
   Algorithms
===================== */
.algorithms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* smaller min width */
  gap: 25px;
  margin-top: 2rem;
}

.algorithm-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px; /* smaller height */
}

.algorithm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.algorithm-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #00bcd4;
}

.algorithm-card p {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 1rem;
}

.algorithm-card a {
  align-self: flex-start;
  background: #00bcd4;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.algorithm-card a:hover {
  background: #0097a7;
}


/* =====================
   Datasets
===================== */
/*.dataset-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* narrower min-width */
/*  gap: 25px;
  margin-top: 2rem;
}

.dataset-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.dataset-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.dataset-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #00bcd4;
}

.dataset-card p {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 1rem;
}

.dataset-card a {
  align-self: flex-start;
  background: #00bcd4;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.dataset-card a:hover {
  background: #0097a7;
}
*/


/* =====================
   Projects
===================== */
.projects-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 2rem auto;            /* was 190px top; now consistent with other pages */
  padding: 0 20px;
}

.projects-section {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.projects-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;          /* global h1 already centered + underline */
}

.projects-section p.intro {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #555;
}

.project-list {
  display: grid;
  gap: 22px;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.project-card h2 {
  color: #2d3e50;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.project-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.project-card a {
  align-self: flex-start;
  background: #00bcd4;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.1s ease;
}

.project-card a:hover { background: #0097a7; }
.project-card a:active { transform: translateY(1px); }

.learn-more-btn {
  align-self: flex-start;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #00bcd4;
  color: #fff;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.1s ease;
  margin-top: auto;                         /* stick to bottom */
}
.learn-more-btn:hover { background: #0097a7; }
.learn-more-btn:active { transform: translateY(1px); }

.project-card p a {
  background: none;        /* remove button background */
  color: #00bcd4;          /* brand cyan text */
  padding: 0;              /* remove button padding */
  border-radius: 0;
  font-weight: 600;
}
.project-card p a:hover {
  text-decoration: underline;
  background: none;
  color: #0097a7;          /* darker cyan on hover */
}


/* =====================
   Responsive (projects)
===================== */
@media (max-width: 992px){
  .projects-wrapper { grid-template-columns: 1fr; }
}


/* =====================
   Responsive
===================== */
@media(max-width: 992px){
  .projects-wrapper { grid-template-columns: 1fr; }
}
@media(max-width: 768px){
  .nav-links {
    display: none; flex-direction: column; background: #1a252f;
    position: absolute; top: 60px; right: 0; width: 200px;
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .slide-content h1 { font-size: 2rem; }
  .slide-content p { font-size: 1rem; }
}
/* --- Slider text: force white on top of global h1/h2 rule --- */
.slide-content h1,
.slide-content p {
  color: #fff !important;
  /* optional: make it pop a bit */
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* --- Slider arrows: make icons white and button darker for contrast --- */
.control-btn {
  background: rgba(0,0,0,0.4);          /* was rgba(255,255,255,0.2) */
}
.control-btn:hover {
  background: rgba(0,0,0,0.6);
}
.control-btn i {
  color: #fff !important;               /* was teal */
  font-size: 22px;                      /* a touch bigger; tweak if you like */
}

/* (optional) increase hit area */
.slider-controls .control-btn {
  width: 56px;
  height: 56px;
}


/* --- Utilities for DECRA page --- */
.section-card{
  background:#fff;
  border-radius:12px;
  padding:22px;
  box-shadow:0 3px 10px rgba(0,0,0,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
  border-left:5px solid #00bcd4;
  margin-bottom:20px;
}
.section-card:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 16px rgba(0,0,0,0.12);
}

.grid-2{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}
@media(min-width: 992px){
  .grid-2{ grid-template-columns:1fr 1fr; }
}

.link-chips {
  display: flex;
  justify-content: center;  /* centers items horizontally */
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 20px;
}

.link-chips a{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background:#eaf9fc; color:#00bcd4; text-decoration:none; font-weight:600;
  border:1px solid #bfeaf2;
}
.link-chips a:hover{ background:#00bcd4; color:#fff; border-color:#00bcd4; }

/* Reusable GitHub-style button (matches Algorithms page look) */
.github-btn {
  display: inline-block;
  background: #00bcd4;
  color: #fff !important;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.github-btn:hover {
  background: #0097a7;
  color: #fff !important;
}

/* --- Reusable Learn More button (matches Events page) --- */
.learn-more-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #00bcd4;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.1s ease;
}

.learn-more-btn:hover {
  background: #0097a7;
  text-decoration: none;
}

.learn-more-btn:active {
  transform: translateY(1px);
}

/* --- Endorsements (accordion) --- */
.endorsements {
  margin-top: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 5px solid #00bcd4;
}

.endorsements > summary {
  cursor: pointer;
  font-weight: 600;
  color: #00bcd4;
  list-style: none;
}

.endorsements > summary::-webkit-details-marker { display: none; }

.endorsement {
  margin: 14px 0;
  padding: 12px 14px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}

.endorsement p { color: #444; margin: 0 0 8px; line-height: 1.6; }
.endorsement footer { color: #00bcd4; font-size: 0.95rem; }

.endorsement-download { margin-top: 10px; }

/* --- Endorsement author (photo + name) --- */
.endorsement footer {
  margin-top: 8px;
}

/* Circular avatar consistent with Team page */
.avatar-circle {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Name + affiliation row */
.endorsement-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.endorsement-author .name {
  color: #00bcd4;         /* matches headings / brand cyan */
  font-weight: 600;
  line-height: 1.2;
}

.endorsement-author .affil {
  color: #00bcd4;
  font-size: 0.95rem;
  line-height: 1.35;
}

/* Make the whole author row clickable if wrapped in a link */
.endorsement-author a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

/* Small-screen tweak */
@media (max-width: 420px){
  .avatar-circle { width: 64px; height: 64px; }
}

/* Center the author row horizontally (row layout) */
.endorsement-author {
  display: flex;
  align-items: center;   /* keeps name vertically centered to the avatar */
  justify-content: center; /* centers the row within the box */
  gap: 12px;
}
.endorsement-author .name,
.endorsement-author .affil { text-align: center; }
.endorsement-author a { align-items: center; }

/* --- Responsive video embed (16:9, rounded, shadow) --- */
.video-embed {
  max-width: 980px;
  margin: 0 auto 2rem;
}
.video-embed .player {
  position: relative;
  width: 100%;
  /* fallback for older browsers */
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}
.video-caption {
  text-align: center;
  color: #555;
  font-size: 0.98rem;
  margin-top: 10px;
}
