@charset "UTF-8";
:root {
  --fehd-teal-dark: #295957;
  --fehd-teal: #3a7d7a;
  --fehd-sage: #7aab8a;
  --fehd-sage-light: #c8dece;
  --fehd-sage-pale: #edf5ef;
  --fehd-warm: #f5f0e8;
  --fehd-accent: #e8a87c;
  --fehd-muted: #6b7f7c;
  --fehd-ink: #12211f;
  --fehd-card: #ffffff;
  --fehd-border: rgba(41, 89, 87, 0.14);
  --fehd-shadow-sm: 0 6px 18px rgba(18, 33, 31, 0.08);
  --fehd-shadow-md: 0 14px 40px rgba(18, 33, 31, 0.12);
  --fehd-ring: 0 0 0 4px rgba(58, 125, 122, 0.18);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
  color: #1e2d2a;
  background: linear-gradient(180deg, #ffffff 0%, var(--fehd-sage-pale) 55%, #ffffff 100%);
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 400;
  color: var(--fehd-teal-dark);
}

a {
  color: var(--fehd-teal);
  text-underline-offset: 0.2em;
}

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

:focus-visible {
  outline: none;
  box-shadow: var(--fehd-ring);
  border-radius: 10px;
}

section[id] {
  scroll-margin-top: 92px;
}

section {
  position: relative;
}
section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 89, 87, 0.1), transparent);
  pointer-events: none;
}

.bg-light-fehd {
  background: var(--fehd-warm) !important;
}

.btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(18, 33, 31, 0.12);
}
.btn:active {
  transform: translateY(0px);
  box-shadow: none;
}

.fehd-navbar {
  height: auto;
  min-height: 64px;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fehd-sage-light);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.fehd-navbar > .container {
  flex-wrap: wrap;
  align-items: center;
  min-height: 64px;
}
.fehd-navbar .navbar-brand,
.fehd-navbar .navbar-toggler {
  height: 64px;
  display: flex;
  align-items: center;
}
.fehd-navbar .fehd-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  padding: 0.25rem 0.4rem;
  color: var(--fehd-teal-dark);
  font-size: 1.55rem;
  line-height: 1;
}
.fehd-navbar .fehd-toggler:focus {
  box-shadow: none !important;
}
.fehd-navbar .fehd-toggler .fehd-toggler__open {
  display: block;
}
.fehd-navbar .fehd-toggler .fehd-toggler__close {
  display: none;
}
.fehd-navbar .fehd-toggler[aria-expanded=true] .fehd-toggler__open {
  display: none;
}
.fehd-navbar .fehd-toggler[aria-expanded=true] .fehd-toggler__close {
  display: block;
}
@media (min-width: 992px) {
  .fehd-navbar {
    height: 80px;
    min-height: 80px;
  }
  .fehd-navbar > .container {
    min-height: 80px;
  }
  .fehd-navbar .navbar-brand {
    height: 80px;
  }
  .fehd-navbar .navbar-toggler {
    display: none;
  }
}
.fehd-navbar.scrolled {
  box-shadow: var(--fehd-shadow-sm);
  background: rgba(255, 255, 255, 0.86) !important;
}
.fehd-navbar .navbar-collapse {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--fehd-sage-light);
  margin: 0 -1.5rem;
  padding: 0.75rem 1.5rem 1rem;
}
@media (min-width: 992px) {
  .fehd-navbar .navbar-collapse {
    background: transparent;
    border-top: none;
    margin: 0;
    padding: 0;
  }
}
.fehd-navbar .navbar-brand {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.15rem;
  color: var(--fehd-teal-dark) !important;
  line-height: 1.15;
}
.fehd-navbar .navbar-brand small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  color: var(--fehd-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.fehd-navbar .nav-link {
  border-radius: 6px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.fehd-navbar .nav-link:hover {
  background: var(--fehd-sage-pale);
  color: var(--fehd-teal) !important;
  transform: translateY(-1px);
}
.fehd-navbar .nav-link.active {
  background: rgba(58, 125, 122, 0.12);
  color: var(--fehd-teal-dark) !important;
}
.fehd-navbar .nav-link--urgent {
  background: #fee2e2;
  color: #c0392b !important;
  font-weight: 700;
}
.fehd-navbar .nav-link--urgent:hover {
  background: #fecaca;
}

.logo-bar {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}
.logo-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-bar__item {
  display: inline-flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.18s;
}
.logo-bar__item img {
  height: 60px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo-bar__item img.facultylogo {
  height: 50px;
}

.fehd-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(41, 89, 87, 0.72) 0%, rgba(58, 125, 122, 0.55) 55%, rgba(122, 171, 138, 0.45) 100%), url("../img/hero-bg.jpg") center/cover no-repeat;
  padding-top: 80px;
}
@media (min-width: 992px) {
  .fehd-hero {
    padding-top: 160px;
  }
}
.fehd-hero {
  position: relative;
  overflow: hidden;
}
.fehd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.fehd-hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50rem;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}
.fehd-hero h1 {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.12;
}
.fehd-hero h1 em {
  font-style: italic;
  color: var(--fehd-accent);
}
.fehd-hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}
.fehd-hero__text {
  animation: fadeUp 0.65s ease both;
}
.fehd-hero__stats {
  animation: fadeUp 0.65s 0.2s ease both;
}

.stat-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #fff;
}
.stat-glass .num {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 2rem;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-glass .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fehd-sage);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fehd-teal-dark);
  line-height: 1.18;
  margin-bottom: 0.85rem;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fehd-teal), var(--fehd-accent));
  opacity: 0.9;
}

.goal-card {
  border: 1px solid var(--fehd-sage-light) !important;
  border-radius: 16px !important;
  background: var(--fehd-card);
  box-shadow: 0 1px 0 rgba(18, 33, 31, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fehd-shadow-md) !important;
  border-color: rgba(58, 125, 122, 0.35) !important;
}
.goal-card .goal-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--fehd-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.fehd-tabs .nav-link {
  border-radius: 50rem !important;
  border: 2px solid var(--fehd-sage-light) !important;
  color: var(--fehd-muted);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.42rem 1.1rem;
  background: transparent;
  transition: all 0.18s;
  margin-right: 0.4rem;
  margin-bottom: 0.5rem;
}
.fehd-tabs .nav-link:hover, .fehd-tabs .nav-link.active {
  background: var(--fehd-teal) !important;
  border-color: var(--fehd-teal) !important;
  color: #fff !important;
}

.poster-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  border: 1px solid var(--fehd-sage-light);
  background: var(--fehd-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.poster-card:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow: 0 20px 50px rgba(41, 89, 87, 0.18);
  border-color: rgba(58, 125, 122, 0.35);
}
.poster-card:hover .poster-overlay {
  opacity: 1;
}
.poster-card .poster-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.32rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
  color: #fff;
}
.poster-card .poster-ribbon--workshop {
  background: var(--fehd-teal);
}
.poster-card .poster-ribbon--training {
  background: #6d4c9b;
}
.poster-card .poster-ribbon--event {
  background: var(--fehd-accent);
  color: var(--fehd-teal-dark);
}
.poster-card .poster-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0rem;
  text-align: center;
}
.poster-card .poster-body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.poster-card .poster-emoji {
  font-size: 3rem;
}
.poster-card .poster-name {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 0.95rem;
  color: var(--fehd-teal-dark);
  line-height: 1.3;
}
.poster-card .poster-date {
  font-size: 0.76rem;
  color: var(--fehd-muted);
}
.poster-card .poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41, 89, 87, 0.94) 0%, rgba(41, 89, 87, 0.35) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  z-index: 2;
}
.poster-card .overlay-title {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  text-shadow: #0d1f1c 0px 1px 2px;
}
.poster-card .overlay-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.18rem;
}
.poster-card .overlay-cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fehd-accent);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.poster-card .overlay-cta::after {
  content: "→";
}

#detail-page {
  display: none;
}

.detail-hero {
  min-height: 52vh;
  background: linear-gradient(135deg, var(--fehd-teal-dark) 0%, var(--fehd-teal) 100%);
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.detail-hero h1 {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
}
.detail-hero .detail-meta span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.detail-badge {
  display: inline-block;
  border-radius: 50rem;
  padding: 0.28rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.detail-badge--workshop {
  background: var(--fehd-teal);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.detail-badge--training {
  background: #6d4c9b;
}
.detail-badge--event {
  background: var(--fehd-accent);
  color: var(--fehd-teal-dark);
}

.detail-poster-placeholder {
  min-height: 280px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--fehd-sage-light);
}

.detail-highlight-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--fehd-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}
.detail-highlight-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.4em;
  color: var(--fehd-sage);
  font-size: 0.6rem;
}

.sidebar-info {
  background: var(--fehd-sage-pale);
  border: 1px solid var(--fehd-sage-light);
  border-radius: 16px;
  padding: 1.5rem;
}
.sidebar-info .sidebar-row {
  display: flex;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(122, 171, 138, 0.25);
  font-size: 0.88rem;
}
.sidebar-info .sidebar-row:last-child {
  border-bottom: none;
}
.sidebar-info .sidebar-row .row-label {
  color: var(--fehd-muted);
  min-width: 68px;
}
.sidebar-info .sidebar-row .row-val {
  color: #1e2d2a;
  font-weight: 500;
}

.btn-register {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--fehd-teal);
  color: #fff !important;
  padding: 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-register:hover {
  background: var(--fehd-teal-dark);
  transform: translateY(-1px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--fehd-teal);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.back-link:hover {
  gap: 0.8rem;
  color: var(--fehd-teal-dark);
}
.back-link::before {
  content: "←";
}

.section-dark {
  background: var(--fehd-teal-dark);
  color: #fff;
}
.section-dark .section-label {
  color: var(--fehd-sage-light);
}
.section-dark .section-title {
  color: #fff;
}
.section-dark .amb-highlights {
  margin-top: 3rem;
}
.section-dark .amb-highlights__title {
  color: #fff;
  margin-bottom: 1rem;
}
.section-dark .amb-highlights__lead {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.amb-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.amb-list li::before {
  content: "✦";
  color: var(--fehd-accent);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.35em;
}

.gain-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 1.4rem;
  color: #fff;
  height: 100%;
}
.gain-card .gain-icon {
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}
.gain-card h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #fff;
}
.gain-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.ambassador-accordion.accordion {
  --bs-accordion-color: rgba(255, 255, 255, 0.92);
  --bs-accordion-bg: rgba(255, 255, 255, 0.07);
  --bs-accordion-border-color: rgba(255, 255, 255, 0.16);
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 12px;
  --bs-accordion-inner-border-radius: 11px;
  --bs-accordion-btn-color: #fff;
  --bs-accordion-btn-bg: rgba(255, 255, 255, 0.1);
  --bs-accordion-btn-padding-x: 1.15rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-active-color: #fff;
  --bs-accordion-active-bg: rgba(98, 195, 230, 0.3);
  --bs-accordion-btn-focus-border-color: rgba(200, 222, 206, 0.55);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(122, 171, 138, 0.22);
  --bs-accordion-body-padding-x: 1.15rem;
  --bs-accordion-body-padding-y: 1.35rem;
  border: 0;
}
.ambassador-accordion.accordion > .accordion-item + .accordion-item {
  margin-top: 0;
}
.ambassador-accordion.accordion .amb-accordion-item.accordion-item {
  margin-bottom: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bs-accordion-bg);
}
.ambassador-accordion.accordion .amb-accordion-item.accordion-item:last-child {
  margin-bottom: 0;
}
.ambassador-accordion.accordion .accordion-button {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  box-shadow: none !important;
}
.ambassador-accordion.accordion .accordion-button::after {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.ambassador-accordion.accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.ambassador-accordion.accordion .accordion-body {
  background: rgba(10, 28, 27, 0.55);
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.amb-year-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .amb-year-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.amb-subtitle {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fehd-sage-light);
  margin-bottom: 1rem;
}
.amb-subtitle .bi {
  margin-right: 0.35rem;
  opacity: 0.9;
}

.amb-media-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.amb-media-card:focus-visible {
  outline: none;
  border-color: rgba(200, 222, 206, 0.55);
  box-shadow: 0 0 0 3px rgba(122, 171, 138, 0.35);
}
.amb-media-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 222, 206, 0.45);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  color: #fff;
}
.amb-media-card img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  background: rgba(255, 255, 255, 0.06);
}
.amb-media-card .amb-media-card__meta {
  padding: 0.65rem 0.8rem 0.85rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.amb-media-card .amb-media-card__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
.amb-media-card .amb-media-card__date {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
}
.amb-media-card .amb-media-card__date .bi {
  margin-right: 0.25rem;
}

.amb-lightbox .modal-content {
  background: #1a2f2d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.amb-lightbox .modal-title {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 600;
  font-size: 1.1rem;
}
.amb-lightbox .modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.amb-lightbox .modal-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.amb-lightbox .modal-body {
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 1rem;
}
.amb-lightbox .modal-body img {
  max-height: 72vh;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.amb-lightbox .amb-lightbox-meta {
  color: rgba(255, 255, 255, 0.68);
}

.amb-event-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.amb-event-card:hover {
  border-color: var(--fehd-sage-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.amb-event-card__thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.amb-event-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.amb-event-card:hover .amb-event-card__thumb img {
  transform: scale(1.04);
}
.amb-event-card__no-img {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.25);
}
.amb-event-card--no-photos {
  cursor: default;
  opacity: 0.8;
}
.amb-event-card--no-photos:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: none;
  box-shadow: none;
}
.amb-event-card__count {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.2rem 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  backdrop-filter: blur(4px);
}
.amb-event-card__meta {
  padding: 0.6rem 0.8rem 0.75rem;
}
.amb-event-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0.2rem;
}
.amb-event-card__date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.amb-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: lbFadeIn 0.18s ease;
}
.amb-lightbox-overlay[hidden] {
  display: none !important;
}

.amb-lightbox-close {
  position: fixed;
  top: 0.9rem;
  right: 1.1rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.15s;
  z-index: 2001;
}
.amb-lightbox-close:hover {
  opacity: 1;
}

.amb-lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(100vh - 100px);
  width: 100%;
}

.amb-lightbox-img {
  max-width: 90vw;
  max-height: calc(100vh - 100px);
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
  animation: lbScaleIn 0.2s ease;
}

.amb-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 2001;
}
.amb-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.amb-lightbox-nav--prev {
  left: 0.8rem;
}
.amb-lightbox-nav--next {
  right: 0.8rem;
}

.amb-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  padding: 0.6rem 0.25rem 0;
  flex-shrink: 0;
}

.amb-lightbox-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.amb-lightbox-counter {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.section-urgent {
  background: #fff5f5;
}

.urgent-banner {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  color: #fff;
}
.urgent-banner .icon {
  font-size: 2.5rem;
}
.urgent-banner h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.urgent-banner p {
  font-size: 0.87rem;
  opacity: 0.9;
  margin: 0;
}

.hotline-card {
  background: #fff;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hotline-card:hover {
  border-color: #ef4444;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.1);
}
.hotline-card--edu {
  background: #fff5f5;
  border-color: #fca5a5;
}
.hotline-card .org-name {
  font-size: 0.86rem;
  font-weight: 600;
}
.hotline-card .org-hours {
  font-size: 0.74rem;
  color: var(--fehd-muted);
  margin-top: 2px;
}
.hotline-card .tel {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.05rem;
  color: #c0392b;
  white-space: nowrap;
  margin-left: auto;
}

.section-resources {
  background: var(--fehd-warm);
}

.res-group-title {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
  color: var(--fehd-teal-dark);
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--fehd-sage-light);
  margin-bottom: 1.2rem;
}

.res-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(122, 171, 138, 0.22);
  text-decoration: none;
  transition: padding-left 0.2s;
}
.res-link:hover {
  padding-left: 0.5rem;
}
.res-link::before {
  content: "→";
  color: var(--fehd-sage);
  font-size: 0.78rem;
}
.res-link span {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--fehd-teal);
}

.assess-card {
  background: #fff;
  border-left: 3px solid var(--fehd-teal);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 0.65rem;
}
.assess-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(58, 125, 122, 0.12);
}
.assess-card .assess-name {
  font-size: 0.86rem;
  font-weight: 500;
  color: #1e2d2a;
}
.assess-card .assess-arrow {
  color: var(--fehd-teal);
  font-size: 0.9rem;
}

.org-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}
@media (max-width: 767.98px) {
  .org-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.org-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0.75rem;
  min-height: 130px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  overflow: hidden;
}
.org-logo-item:hover {
  border-color: var(--fehd-teal);
  transform: translateY(-2px);
}
.org-logo-item img {
  width: 100%;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.18s;
}
.org-logo-item:hover img {
  filter: grayscale(0%);
}
.org-logo-item .org-logo-name {
  margin-top: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  color: var(--fehd-teal-dark);
  text-align: center;
}

.movie-card {
  border: 1px solid var(--fehd-sage-light) !important;
  border-radius: 14px !important;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
}
.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(58, 125, 122, 0.15) !important;
}
.movie-card .movie-poster {
  height: 190px;
  overflow: hidden;
  background: var(--fehd-sage-pale);
}
.movie-card .movie-poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.movie-card:hover .movie-poster img {
  transform: scale(1.04);
}
.movie-card .card-body {
  background: #fff;
  padding: 0.5rem 0.75rem !important;
}

.section-contact {
  background: var(--fehd-teal-dark);
  color: #fff;
}
.section-contact .section-label {
  color: var(--fehd-sage-light);
}
.section-contact .section-title {
  color: #fff;
}

.contact-tagline {
  font-family: "Noto Serif", Georgia, serif;
  font-style: italic;
  font-size: 1.9rem;
  color: #fff;
  line-height: 1.25;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-map-placeholder {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
}
.contact-map-placeholder span {
  font-size: 2.2rem;
}

.fehd-footer {
  background: #0d1f1c;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
  text-align: left;
  padding: 1.4rem;
}

/*
 * workshop-detail.css
 * Styles specific to individual workshop / event detail pages.
 * Loaded in addition to main.css.
 */
/* ─── Detail Hero ─── */
.detail-hero {
  min-height: 30vh;
  background: linear-gradient(135deg, var(--fehd-teal-dark) 0%, var(--fehd-teal) 100%);
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Type-specific hero tints */
.detail-hero[data-type=training] {
  background: linear-gradient(135deg, #3a2a6e 0%, #6d4c9b 100%);
}

.detail-hero[data-type=event] {
  background: linear-gradient(135deg, var(--fehd-teal-dark) 0%, #b07040 100%);
}

.detail-hero h1 {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
}

.detail-meta span,
.detail-meta-item {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ─── Detail Badge ─── */
.detail-badge {
  display: inline-block;
  border-radius: 50rem;
  padding: 0.28rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.detail-badge--workshop {
  background: var(--fehd-teal);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-badge--training {
  background: #6d4c9b;
}

.detail-badge--event {
  background: var(--fehd-accent);
  color: var(--fehd-teal-dark);
}

/* ─── Body Layout ─── */
.detail-section-title {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.45rem;
  color: var(--fehd-teal-dark);
  margin-bottom: 1rem;
}

.detail-poster-img {
  display: inline-block; /* shrink-wrap to image width */
  max-width: 100%; /* never overflow the column */
  border-radius: 16px;
  border: 1px solid var(--fehd-sage-light);
  overflow: hidden; /* clips border-radius on the img */
}

/* Preserve original aspect ratio; cap very tall posters at 600px */
.detail-poster-img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Emoji fallback poster */
.detail-poster-emoji {
  font-size: 5rem;
  line-height: 1;
  padding: 3rem;
}

.detail-highlight-list {
  list-style: none;
  padding: 0;
}

.detail-highlight-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--fehd-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.detail-highlight-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.42em;
  color: var(--fehd-sage);
  font-size: 0.6rem;
}

/* ─── Sidebar ─── */
.detail-sidebar-sticky {
  position: sticky;
  top: calc(64px + 1.5rem); /* navbar height + gap */
}

/* ─── Back Link ─── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--fehd-teal);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.back-link::before {
  content: "←";
}

.back-link:hover {
  gap: 0.8rem;
  color: var(--fehd-teal-dark);
}

/* ─── Register Button ─── */
.btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--fehd-teal);
  color: #fff;
  padding: 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-register:hover {
  background: var(--fehd-teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   PHOTO ALBUM — Carousel + optional Lightbox
   (photo-album.js controls behaviour)
   ═══════════════════════════════════════════════════════════════ */
/* ── Wrapper ── */
.photo-album {
  margin-bottom: 2.5rem;
}

.photo-album__label {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.45rem;
  color: var(--fehd-teal-dark);
  margin-bottom: 1rem;
}

/* ── Carousel frame ── */
.photo-album .carousel-inner {
  border-radius: 14px;
  overflow: hidden;
  background: var(--fehd-sage-pale);
  border: 1px solid var(--fehd-sage-light);
}

.photo-album .carousel-item img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Zoom cursor hint when lightbox is active */
.photo-album[data-lightbox=true] .carousel-item img {
  cursor: zoom-in;
}

/* ── Controls ── */
.photo-album .carousel-control-prev,
.photo-album .carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(41, 89, 87, 0.72);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: background 0.2s;
}

.photo-album .carousel-control-prev {
  left: 10px;
}

.photo-album .carousel-control-next {
  right: 10px;
}

.photo-album .carousel-control-prev:hover,
.photo-album .carousel-control-next:hover {
  background: var(--fehd-teal-dark);
}

.photo-album .carousel-control-prev-icon,
.photo-album .carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

/* ── Dot indicators ── */
.photo-album .carousel-indicators {
  margin-bottom: 8px;
}

.photo-album .carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.photo-album .carousel-indicators .active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Optional caption overlay ── */
.photo-album .carousel-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  border-radius: 0 0 14px 14px;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 0.65rem;
  text-align: left;
}

.photo-album .carousel-caption p {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

/* ── Thumbnail strip ── */
.photo-album__thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.photo-album__thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.18s, transform 0.18s;
}

.photo-album__thumbs button img {
  width: 68px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.photo-album__thumbs button.active,
.photo-album__thumbs button:hover {
  border-color: var(--fehd-teal);
  transform: translateY(-2px);
}

/* Mark the first thumb active by default */
.photo-album__thumbs button:first-child {
  border-color: var(--fehd-teal);
}

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX  (only used when data-lightbox="true")
   ══════════════════════════════════════════════════════════════ */
.fehd-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
}

.fehd-lightbox.is-open {
  display: flex;
  animation: lbFadeIn 0.18s ease;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fehd-lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
  cursor: default;
  animation: lbScaleIn 0.2s ease;
}

@keyframes lbScaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.fehd-lightbox__caption {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
}

.fehd-lightbox__close {
  position: fixed;
  top: 0.9rem;
  right: 1.1rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.15s;
  z-index: 2001;
}

.fehd-lightbox__close:hover {
  opacity: 1;
}

.fehd-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 2001;
}

.fehd-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.fehd-lightbox__nav--prev {
  left: 0.8rem;
}

.fehd-lightbox__nav--next {
  right: 0.8rem;
}

/* ── Autoplay: carousel wrap (needed for hover detection) ── */
.photo-album__carousel-wrap {
  position: relative;
}

/* ── Progress bar ── */
.photo-album__progress {
  height: 3px;
  background: var(--fehd-sage-light);
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  margin-top: -1px; /* sit flush under carousel border */
}

.photo-album__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--fehd-teal);
  border-radius: 0 0 14px 14px;
  /* transition is set dynamically by JS */
}

/* ── Autoplay badge (▶ / ⏸ indicator) ── */
.photo-album__autoplay-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: rgba(41, 89, 87, 0.72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.photo-album__autoplay-icon {
  font-size: 0.62rem;
  color: #fff;
  line-height: 1;
  /* nudge ▶ optically centred */
  margin-left: 1px;
}

/* Dim badge when paused */
.photo-album__carousel-wrap.is-paused .photo-album__autoplay-badge {
  background: rgba(0, 0, 0, 0.45);
}

/* ══════════════════════════════════════════════════════════════
   WORKSHOP SIDEBAR NAV  (#workshop-nav)
   Auto-generated by workshop-nav.js from POSTERS data.
   ══════════════════════════════════════════════════════════════ */
/* ── Group header ── */
.wnav-group {
  margin-bottom: 1.4rem;
}

.wnav-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fehd-muted);
  padding: 0 0.2rem 0.45rem;
  border-bottom: 1px solid var(--fehd-sage-light);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Each nav item (link or current) ── */
.wnav-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
  margin-bottom: 1px;
}

a.wnav-item {
  color: var(--fehd-teal-dark);
}

a.wnav-item:hover {
  background: var(--fehd-sage-pale);
  color: var(--fehd-teal);
}

/* Current page — outlined box, bold, distinct colour */
.wnav-item--current {
  border: 1.5px solid var(--fehd-teal);
  border-radius: 8px;
  background: transparent;
  cursor: default;
  padding: 0.5rem 0.55rem; /* restore padding removed by old border-left trick */
}

.wnav-item--current .wnav-title {
  color: var(--fehd-teal);
  font-weight: 700;
}

.wnav-emoji {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.wnav-title {
  font-size: 0.82rem;
  line-height: 1.4;
  color: inherit;
}

.amb-feedback__heading {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.amb-feedback-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.amb-feedback-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.amb-feedback-row--left {
  flex-direction: row;
}
.amb-feedback-row--left .amb-bubble::before {
  left: -14px;
  top: 18px;
  border-top: 9.8px solid transparent;
  border-bottom: 9.8px solid transparent;
  border-right: 14px solid rgba(255, 255, 255, 0.8);
}
.amb-feedback-row--right {
  flex-direction: row-reverse;
}
.amb-feedback-row--right .amb-bubble::before {
  right: -14px;
  top: 18px;
  border-top: 9.8px solid transparent;
  border-bottom: 9.8px solid transparent;
  border-left: 14px solid rgba(255, 255, 255, 0.8);
}
@media (max-width: 575.98px) {
  .amb-feedback-row {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .amb-feedback-row .amb-bubble::before {
    left: 18px !important;
    right: auto !important;
    top: -14px !important;
    border-left: 9.8px solid transparent !important;
    border-right: 9.8px solid transparent !important;
    border-bottom: 14px solid rgba(255, 255, 255, 0.8) !important;
    border-top: none !important;
  }
}

.amb-feedback-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid var(--fehd-sage);
  background: var(--fehd-teal);
}

.amb-bubble {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 1rem 1.1rem 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.amb-bubble:hover {
  background: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.22);
}
.amb-bubble::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.amb-bubble__text {
  font-size: 0.86rem;
  font-family: "Noto Serif", Georgia, serif;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.85);
  font-style: italic;
  margin: 0 0 0.75rem;
}
.amb-bubble__text::before {
  content: "“";
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: var(--fehd-sage);
  margin-right: 0.1rem;
  font-style: normal;
}
.amb-bubble__text::after {
  content: "”";
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: var(--fehd-sage);
  margin-left: 0.1rem;
  font-style: normal;
}
.amb-bubble__author {
  margin-top: 0.1rem;
}
.amb-bubble__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}
.amb-bubble__role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.1rem;
}/*# sourceMappingURL=main.css.map */