:root {
  --bg: #07080c;
  --bg-elevated: rgba(20, 21, 29, 0.78);
  --panel: rgba(22, 24, 33, 0.76);
  --panel-solid: #161821;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f6f5f4;
  --muted: #a8abb8;
  --soft: #d5d7df;
  --accent: #e50914;
  --accent-bright: #ff4b56;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.30);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.showcase-body {
  margin: 0 !important;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: 'DM Sans', Arial, sans-serif;
  overflow-x: hidden;
}

.showcase-body a { color: inherit; text-decoration: none; }
.showcase-body img { max-width: 100%; display: block; }

.showcase-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% -4%, rgba(229, 9, 20, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 24%, rgba(44, 94, 180, 0.14), transparent 33rem),
    var(--bg);
}

.showcase-shell::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: '';
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.showcase-ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.showcase-ambient--red {
  width: 17rem;
  height: 17rem;
  top: 35rem;
  left: -9rem;
  background: rgba(229, 9, 20, 0.14);
}

.showcase-ambient--blue {
  width: 20rem;
  height: 20rem;
  top: 20rem;
  right: -11rem;
  background: rgba(54, 98, 187, 0.14);
}

.site-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0;
}

.site-brand,
.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-brand {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(229, 9, 20, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.site-nav {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a { transition: color 160ms ease; }
.site-nav a:hover { color: #fff; }

.site-nav__email {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff !important;
}

.hero {
  position: relative;
  width: min(1480px, calc(100% - 64px));
  min-height: 330px;
  margin: 6px auto 40px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #11131b;
  box-shadow: var(--shadow);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #10121a;
  background-position: center;
  background-size: cover;
  opacity: 0.9;
  transform: scale(1.02);
}

.hero__content,
.hero__feature {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  align-items: center;
  max-width: 820px;
  gap: 24px;
}

.hero__portrait {
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0,0,0,0.34);
}

.eyebrow,
.research-card__venue,
.contact-card__label,
.about-card__label,
.hero__feature-label {
  margin: 0;
  color: var(--accent-bright);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 3px 0 5px;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 0.98;
}

.hero__role {
  margin: 0;
  color: #f3f3f4;
  font-size: 1.08rem;
  font-weight: 600;
}

.hero__meta {
  margin: 5px 0 16px;
  color: #d4d5d9;
  font-size: 0.94rem;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero__links a {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 7px;
  background: rgba(0,0,0,0.24);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero__links a:hover {
  border-color: rgba(255,255,255,0.72);
  background: rgba(229, 9, 20, 0.82);
  transform: translateY(-1px);
}

.hero__feature {
  position: absolute;
  right: 40px;
  bottom: 38px;
  display: grid;
  max-width: min(32%, 400px);
  gap: 7px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  background: rgba(6,7,11,0.66);
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.hero__feature:hover {
  border-color: rgba(255,255,255,0.46);
  transform: translateY(-3px);
}

.hero__feature strong {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero__feature > span:last-child { color: var(--muted); font-size: 0.78rem; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.80fr) minmax(330px, 1.1fr) minmax(330px, 1.1fr);
  gap: 24px;
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto 52px;
}

.content-column { min-width: 0; }

.column-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.column-heading p {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.column-heading h2 {
  margin: 0;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.panel-card,
.research-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(32, 34, 45, 0.82), rgba(16, 18, 26, 0.86));
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.panel-card { padding: 22px; }

.about-card__lead {
  margin: 0;
  color: #e7e7eb;
  font-size: 1rem;
  line-height: 1.62;
}

.about-card__divider {
  height: 1px;
  margin: 22px 0;
  background: var(--line);
}

.interest-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.interest-list li {
  position: relative;
  padding-left: 17px;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.interest-list li::before {
  position: absolute;
  left: 0;
  top: 0.51em;
  width: 6px;
  height: 6px;
  content: '';
  border-radius: 50%;
  background: var(--accent);
}

.contact-card { margin-top: 16px; }
.contact-card__email {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contact-card p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 0.86rem; line-height: 1.45; }

.research-list { display: grid; gap: 13px; }

.research-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 112px;
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.research-card:hover {
  border-color: rgba(255,255,255,0.34);
  background: linear-gradient(145deg, rgba(42, 44, 57, 0.90), rgba(18, 20, 29, 0.92));
  transform: translateY(-3px);
}

.research-card__image {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #272a35;
}

.research-card__image::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, transparent 52%, rgba(13,15,22,0.30));
  pointer-events: none;
}

.research-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.research-card:hover .research-card__image img { transform: scale(1.06); }

.research-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 112px;
  place-items: center;
  color: rgba(255,255,255,0.66);
  background: linear-gradient(135deg, #242938, #4d1520);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.research-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 14px 15px;
}

.research-card__venue { color: var(--accent-bright); font-size: 0.62rem; letter-spacing: 0.11em; }

.research-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 6px;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.research-card h3 a:hover { color: #ff737b; }

.research-card__authors {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.research-card__authors strong { color: #fff; }

.empty-state {
  padding: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.empty-state p { margin: 0; }
.empty-state code { color: #fff; }

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: rgba(255,255,255,0.48);
  font-size: 0.75rem;
}

@media (max-width: 1120px) {
  .content-grid { grid-template-columns: 0.92fr 1fr; }
  .content-column--about { grid-column: 1 / -1; }
  .content-column--about .panel-card { max-width: 640px; }
}

@media (max-width: 800px) {
  .site-topbar,
  .hero,
  .content-grid,
  .site-footer { width: min(100% - 36px, 680px); }

  .site-topbar { padding: 18px 0; }
  .site-nav { gap: 0.75rem; font-size: 0.78rem; }
  .site-nav a:not(.site-nav__email) { display: none; }

  .hero { min-height: auto; padding: 30px 24px 26px; }
  .hero__content { align-items: flex-start; }
  .hero__portrait { width: 78px; height: 78px; }
  .hero h1 { font-size: 2.25rem; }
  .hero__meta { line-height: 1.45; }
  .hero__feature { position: relative; right: auto; bottom: auto; max-width: 100%; margin-top: 24px; }

  .content-grid { grid-template-columns: 1fr; }
  .content-column--about { grid-column: auto; }
  .content-column--about .panel-card { max-width: none; }
  .site-footer { display: grid; gap: 7px; }
}

@media (max-width: 480px) {
  .site-brand > span:last-child { display: none; }
  .hero__content { gap: 16px; }
  .hero__role { font-size: 0.95rem; }
  .hero__meta { font-size: 0.83rem; }
  .hero__links a { padding: 7px 9px; font-size: 0.75rem; }
  .research-card { grid-template-columns: 96px minmax(0, 1fr); }
}


.featured-publication-card {
  margin-bottom: 18px;
  overflow: hidden;
}

.featured-publication-card__label {
  margin: 0 0 10px;
  color: #e50914;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-publication-card img {
  display: block;
  width: 100%;
  max-height: 150px;
  margin-bottom: 14px;
  object-fit: cover;
  border-radius: 8px;
}

.featured-publication-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.featured-publication-card h3:hover {
  color: #e50914;
}

.featured-publication-card__authors,
.featured-publication-card__venue {
  margin: 5px 0 0;
  color: #a9a9b5;
  font-size: 13px;
  line-height: 1.45;
}

.hero__feature--cv {
  cursor: pointer;
}

.hero__feature--cv strong::after {
  content: " ↓";
  color: #e50914;
}

/* Publication pagination */
#publication-list .publication-card[hidden] {
  display: none !important;
}

.publication-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 24px 0 8px;
}

.publication-pagination__button {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #d8d8df;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease,
    color 0.18s ease, transform 0.18s ease;
}

.publication-pagination__button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #e50914;
  color: #ffffff;
}

.publication-pagination__button.is-active {
  border-color: #e50914;
  background: #e50914;
  color: #ffffff;
}

.publication-pagination__button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .publication-pagination {
    gap: 5px;
  }

  .publication-pagination__button {
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    font-size: 12px;
  }
}

#publication-list .publication-card[hidden] {
  display: none !important;
}

.publication-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 22px 0 8px;
}

.publication-pagination__button {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #d8d8df;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.publication-pagination__button:hover {
  border-color: #e50914;
  color: #ffffff;
}

.publication-pagination__button.is-active {
  border-color: #e50914;
  background: #e50914;
  color: #ffffff;
}

/* Publication pagination footer */

.publication-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 2px 0;
  border-top: 1px solid var(--line);
}

.publication-pager__info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.publication-pager__label {
  color: var(--accent-bright);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.publication-pager__status {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.35;
  white-space: nowrap;
}

.publication-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
}

.publication-pagination__button {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease,
    color 160ms ease;
}

.publication-pagination__button:hover {
  border-color: var(--accent);
  color: #fff;
}

.publication-pagination__button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

@media (max-width: 540px) {
  .publication-pager {
    align-items: flex-start;
    flex-direction: column;
  }

  .publication-pagination {
    justify-content: flex-start;
  }

  .publication-pager__status {
    white-space: normal;
  }
}
/* Hide cards not belonging to the active publication page */
#publication-list .publication-card[hidden] {
  display: none !important;
}

/* Clearly mark pagination as the footer of Publications only */
.publication-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.publication-pager__info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.publication-pager__label {
  color: var(--accent-bright);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.publication-pager__status {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.publication-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
}

.publication-pagination__button {
  min-width: 34px;
  height: 31px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease,
    color 160ms ease;
}

.publication-pagination__button:hover:not(:disabled) {
  border-color: var(--accent);
  color: #ffffff;
}

.publication-pagination__button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.publication-pagination__button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 620px) {
  .publication-pager {
    align-items: flex-start;
    flex-direction: column;
  }

  .publication-pagination {
    justify-content: flex-start;
  }
}

/* Cinematic animated texture */
.hero {
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    transparent 82%
  );
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -35%;
  right: -12%;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background: radial-gradient(
    circle,
    rgba(229, 9, 20, 0.33) 0%,
    rgba(113, 31, 192, 0.12) 34%,
    transparent 70%
  );
  filter: blur(18px);
  animation: hero-glow-drift 10s ease-in-out infinite alternate;
}

@keyframes hero-glow-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-7%, 8%, 0) scale(1.12);
  }
}

/* =========================================================
   Project poster cards
   ========================================================= */

#projects .project-poster-list {
  display: grid;
  gap: 18px;
}

.project-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.project-poster__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-poster__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #101116;
}

.project-poster__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 420ms ease;
}

.project-poster__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 7, 10, 0.05) 10%,
      rgba(6, 7, 10, 0.15) 48%,
      rgba(6, 7, 10, 0.82) 100%
    );
  pointer-events: none;
}

.project-poster__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(229, 9, 20, 0.3),
      transparent 45%
    ),
    #111218;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.project-poster__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8, 9, 13, 0.58);
  backdrop-filter: blur(8px);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-poster__arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #e50914;
  font-size: 1rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.project-poster__content {
  padding: 15px 16px 17px;
}

.project-poster__content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

.project-poster__content p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.project-poster__explore {
  display: inline-block;
  margin-top: 13px;
  color: #ff626b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.project-poster:hover {
  z-index: 2;
  border-color: rgba(229, 9, 20, 0.85);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.43);
  transform: translateY(-6px);
}

.project-poster:hover .project-poster__media img {
  filter: saturate(1.16) contrast(1.06);
  transform: scale(1.08);
}

.project-poster:hover .project-poster__arrow {
  opacity: 1;
  transform: translateY(0);
}

.project-poster:hover .project-poster__explore {
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .project-poster,
  .project-poster__media img,
  .project-poster__arrow,
  .project-poster__explore {
    transition: none;
  }
}

.about-card__lead a {
  color: #ff626b;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 98, 107, 0.6);
  text-underline-offset: 3px;
}

.about-card__lead a:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

