/* =============================================================
   FlightLight — Main Stylesheet
   Design system: blue-on-white, premium travel brand
   ============================================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
  background: #ffffff;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: #1a56db; text-decoration: none; }
a:hover { color: #1e429f; text-decoration: underline; }

/* ---- Container ---- */
.fn-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Sections ---- */
.fn-section {
  padding: 80px 0;
}
.fn-section--bg {
  background: #f9fafb;
}
@media (max-width: 768px) {
  .fn-section { padding: 48px 0; }
}

/* ---- Section Header ---- */
.fn-section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a56db;
  margin-bottom: 8px;
}
.fn-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 12px;
}
.fn-section-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .fn-section-title { font-size: 28px; }
}

/* ---- Buttons ---- */
.fn-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1a56db;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  line-height: 1;
}
.fn-btn:hover {
  background: #1e429f;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}
.fn-btn--outline {
  background: transparent;
  border: 2px solid #1a56db;
  color: #1a56db;
}
.fn-btn--outline:hover {
  background: #1a56db;
  color: #ffffff;
}
.fn-btn--white {
  background: #ffffff;
  color: #1a56db;
}
.fn-btn--white:hover {
  background: #f9fafb;
  color: #1e429f;
}
.fn-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ---- Cards ---- */
.fn-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fn-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.fn-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.fn-card__body {
  padding: 20px;
}
.fn-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}
.fn-card__text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* ---- Country / Visa Cards ---- */
.fn-visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.fn-visa-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.fn-visa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.12);
  border-color: #1a56db;
  text-decoration: none;
}
.fn-visa-card__flag {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}
.fn-visa-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* ---- Service Cards ---- */
.fn-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .fn-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fn-services-grid { grid-template-columns: 1fr; }
}
.fn-service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fn-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.fn-service-card__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.fn-service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}
.fn-service-card__text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ---- Hero ---- */
.fn-hero {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #111827;
}
@media (max-width: 1024px) { .fn-hero { height: 520px; } }
@media (max-width: 768px)  { .fn-hero { height: 420px; } }

.fn-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fn-hero__slide.active { opacity: 1; }
.fn-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fn-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15) 100%);
}
.fn-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 0 24px;
  width: 100%;
  max-width: 800px;
}
.fn-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  display: block;
}
.fn-hero__title {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.fn-hero__subtitle {
  font-size: clamp(15px, 2vw, 19px);
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.fn-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.fn-btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}
.fn-btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.fn-hero__counter {
  position: absolute;
  bottom: 28px;
  right: 48px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.05em;
}
.fn-hero__arrows {
  position: absolute;
  bottom: 20px;
  left: 48px;
  display: flex;
  gap: 10px;
}
.fn-hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.fn-hero__arrow:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
  .fn-hero__arrows { left: 16px; }
  .fn-hero__counter { right: 16px; }
}

/* ---- Booking Form ---- */
.fn-booking-section {
  background: linear-gradient(135deg, #1a56db 0%, #1e429f 100%);
  padding: 60px 0;
}
.fn-booking-intro {
  text-align: center;
  margin-bottom: 32px;
}
.fn-booking-intro__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.fn-booking-intro__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.fn-booking-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.fn-booking-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .fn-booking-form__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fn-booking-form__row { grid-template-columns: 1fr; }
}
.fn-booking-form__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fn-booking-form .fn-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, background 0.2s;
}
.fn-booking-form .fn-input::placeholder { color: rgba(255,255,255,0.55); }
.fn-booking-form .fn-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}
/* Date input — fix calendar icon color */
.fn-booking-form .fn-input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }
.fn-booking-form__submit {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.fn-booking-form__submit .fn-btn {
  padding: 14px 48px;
  font-size: 16px;
}
.fn-booking-form__note {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ---- Destinations Grid ---- */
.fn-destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .fn-destinations-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .fn-destinations-grid { grid-template-columns: repeat(2, 1fr); }
}
.fn-destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e5e7eb;
  cursor: pointer;
}
.fn-destination-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.fn-destination-card:hover .fn-destination-card__img {
  transform: scale(1.05);
}
.fn-destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.fn-destination-card__name {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

/* ---- Why Us ---- */
.fn-whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .fn-whyus-grid { grid-template-columns: 1fr; }
}
.fn-whyus-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}
.fn-whyus-card__icon {
  width: 64px;
  height: 64px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.fn-whyus-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.fn-whyus-card__text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.fn-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .fn-testimonials-grid { grid-template-columns: 1fr; }
}
.fn-testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px;
}
.fn-testimonial-card__stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
}
.fn-testimonial-card__quote {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.fn-testimonial-card__author {
  font-weight: 700;
  color: #111827;
  font-size: 14px;
}

/* ---- Header / Nav ---- */
.fn-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.fn-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.fn-header__logo img { height: 48px; width: auto; }
.fn-header__logo .fn-site-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a56db;
  text-decoration: none;
}
.fn-nav__list {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.fn-nav__list a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.fn-nav__list a:hover,
.fn-nav__list .current-menu-item > a {
  color: #1a56db;
  background: #eff6ff;
}
.fn-nav__cta a {
  background: #1a56db;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
}
.fn-nav__cta a:hover {
  background: #1e429f !important;
  color: #ffffff !important;
}
/* Hamburger */
.fn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.fn-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .fn-hamburger { display: flex; }
  /* Hamburger → X animation */
  .fn-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .fn-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .fn-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .fn-hamburger span { transition: transform 0.25s ease, opacity 0.2s ease; }

  .fn-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .fn-nav.open { display: block; animation: fnSlideDown 0.2s ease; }
  @keyframes fnSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fn-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .fn-nav__list a {
    display: block;
    width: 100%;
    padding: 10px 14px;
  }
  .fn-nav__cta { margin-top: 8px; }
  .fn-nav__cta a { display: inline-block; width: auto; }
}

/* ---- Footer ---- */
.fn-footer {
  background: #111827;
  color: #d1d5db;
  padding: 64px 0 0;
}
.fn-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .fn-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.fn-footer__heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 16px;
}
.fn-footer__list { list-style: none; }
.fn-footer__list li { margin-bottom: 8px; }
.fn-footer__list a {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s;
}
.fn-footer__list a:hover { color: #ffffff; }
.fn-footer__newsletter-input {
  width: 100%;
  padding: 10px 14px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.fn-footer__newsletter-input::placeholder { color: #6b7280; }
.fn-footer__sub {
  border-top: 1px solid #1f2937;
  padding: 24px;
  text-align: center;
}
.fn-footer__sub-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.fn-footer__logo .fn-site-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.fn-footer__social {
  display: flex;
  gap: 12px;
}
.fn-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f2937;
  border: 1px solid #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.fn-footer__social a:hover { background: #1a56db; color: #fff; }
.fn-footer__contact {
  font-size: 13px;
  color: #6b7280;
  text-align: right;
}
.fn-footer__contact a { color: #9ca3af; }
.fn-footer__disclaimer {
  font-size: 12px;
  color: #4b5563;
  margin-top: 12px;
  text-align: center;
}

/* ---- Deal Carousel ---- */
.fn-deals-carousel {
  position: relative;
  overflow: hidden;
}
.fn-deals-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.fn-deal-card {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #e5e7eb;
}
@media (max-width: 768px) {
  .fn-deal-card { flex: 0 0 calc(100% - 0px); }
}
.fn-deal-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.fn-deal-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
}
.fn-deal-card__body {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}
.fn-deal-card__dest {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.fn-deal-card__price {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

/* ---- Modal ---- */
.fn-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}
.fn-modal.open { display: flex; }
.fn-modal__box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  animation: fnScaleIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
@keyframes fnScaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.fn-modal__icon { font-size: 56px; margin-bottom: 16px; }
.fn-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.fn-modal__text {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
}

/* ---- Inputs ---- */
.fn-input, .fn-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fn-input:focus, .fn-textarea:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.08);
}
.fn-textarea { resize: vertical; min-height: 120px; }
.fn-form-group { margin-bottom: 16px; }
.fn-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

/* ---- Stats ---- */
.fn-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .fn-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.fn-stat__number {
  font-size: 40px;
  font-weight: 700;
  color: #1a56db;
  line-height: 1;
  margin-bottom: 8px;
}
.fn-stat__label {
  font-size: 15px;
  color: #6b7280;
}

/* ---- Section Header (centered variant) ---- */
.fn-section-header {
  margin-bottom: 48px;
}
.fn-section-header .fn-section-label,
.fn-section-header .fn-section-title,
.fn-section-header .fn-section-subtitle {
  margin-bottom: 8px;
}
.fn-section-header .fn-section-subtitle { margin-bottom: 0; }

/* ---- Service Card link ---- */
.fn-service-card__icon-wrap {
  width: 72px;
  height: 72px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.fn-service-card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1a56db;
  text-decoration: none;
}
.fn-service-card__link:hover { color: #1e429f; }

/* ---- Deals dots ---- */
.fn-deals-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.fn-deal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.fn-deal-dot.active,
.fn-deal-dot:hover {
  background: #1a56db;
  transform: scale(1.3);
}

/* ---- fn-empty placeholder ---- */
.fn-empty {
  text-align: center;
  color: #9ca3af;
  padding: 40px 0;
  font-size: 15px;
}

/* ---- Trustpilot Badge ---- */
.fn-trustpilot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.fn-trustpilot__logo {
  font-size: 22px;
  font-weight: 700;
  color: #00b67a;
}
.fn-trustpilot__stars { color: #00b67a; font-size: 22px; }
.fn-trustpilot__label { font-size: 14px; color: #6b7280; }
