/*@import "./styles/aboutStyles.css";*/
/*@import "./styles/calculatorStyles.css";*/
/*@import "./styles/contactStyles.css";*/
/*@import "./styles/customerProcedureStyles.css";*/
/*@import "./styles/FAQStyles.css";*/
/*@import "./styles/homeStyles.css";*/
/*@import "./styles/howItWorksStyles.css";*/
/*@import "./styles/loginStyles.css";*/
/*@import "./styles/policiesStyles.css";*/
/*@import "./styles/registerStyles.css";*/
/*@import "./styles/SMT-NgnStyles.css";*/


/* CSS Custom Properties */
:root {
  /* Typography */
  --font-family-outfit: "Outfit", sans-serif;
  --font-weight-light: 100;
  --font-weight-regular: 500;
  --font-weight-bold: 700;

  /* Fluid, balanced scale */
  --font-size-base: clamp(1rem, 0.2vw + 0.95rem, 1.0625rem);
  --font-size-small: clamp(0.9375rem, 0.2vw + 0.9rem, 1rem);
  --font-size-medium: clamp(1.125rem, 0.3vw + 1rem, 1.25rem);
  --font-size-large: clamp(1.25rem, 0.5vw + 1.05rem, 1.375rem);
  --font-size-heading: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);

  --line-height-base: 1.6;
  --line-height-medium: 1.5;
  --line-height-large: 1.4;
  --line-height-heading: 1.2;

  /* Colors */
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-light: #ffffff;
  --color-subtext: #555555;
  --color-text-secondary: #444444;
  --color-text-primary: #2d0a57;
  --color-primary: #813fd6;
  --color-primary-hover: #2d0a57;
  --color-secondary: #2d0a57;

  --accent-color: #2d0a57;
  --light-accent-color: #f3e8ff;
  --gradient-start: #7a38e0;
  --gradient-end: #3c176a;

  --bg-primary: #7a38e0;
  --bg-primary-dark: #2d0a57;
  --bg-secondary: #f3e8ff;
  --card-bg: #f5f5f5;

  --footer-bg: #1c1b1f;
  --footer-heading-color: #ffffff;
  --footer-text-color: #cccccc;
  --footer-text-muted: #aaaaaa;

  /* Button */
  --btn-primary-bg: var(--color-primary);
  --btn-primary-color: #ffffff;
  --btn-primary-hover-bg: var(--color-primary-hover);

  --btn-outline-bg: transparent;
  --btn-outline-color: var(--color-primary);
  --btn-outline-border: 2px solid var(--color-primary);
  --btn-outline-hover-bg: var(--color-primary);
  --btn-outline-hover-color: #ffffff;

  /* Spacing */
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 24px;
  --spacing-xlarge: 48px;
  --spacing-xxlarge: 58px;
}

*,
*::before,
*::after {
  font-family: var(--font-family-outfit);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
.body {
  margin: 0;
  padding: 0;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

a {
  color: var(--color-primary);
}
a:hover {
  color: var(--color-primary-hover);
}

.btn {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  padding: 11px 30px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.btn.btn--primary {
  text-decoration: none;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-color);
  border: 2px solid transparent;
}

.btn.btn--primary:hover,
.btn.btn--primary:focus {
  background-color: var(--btn-primary-hover-bg);
}

.btn.btn--outline {
  text-decoration: none;
  background-color: var(--btn-outline-bg);
  color: var(--btn-outline-color);
  border: var(--btn-outline-border);
}

.btn.btn--outline:hover,
.btn.btn--outline:focus {
  background-color: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-color);
}

/* Header */
.navbar-brand {
  font-weight: 400;
  color: var(--color-text-light);
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);
  pointer-events: none;
}

.navbar-nav .nav-link {
  color: #813fd6;
  font-weight: 500;
  margin: 0 8px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}
.navbar-nav .nav-link.active {
  color: #813fd6;
}
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #813fd6;
  transition: width 0.6s;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #813fd6;
}

.btn-download {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-weight: 500;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.btn-download:hover {
  background-color: var(--accent-color);
  color: var(--color-text-light);
}

/* Header overlays hero */
.header-overlay .navbar {
  background: var(--bg-primary-dark);
  box-shadow: none;
  z-index: 10;
  min-height: 72px;
  transition: background 0.3s;
}

.header-overlay .navbar-toggler {
  border-color: #ffffff;
}
.header-overlay .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem #ffffff;
}
.header-overlay .navbar-toggler-icon {
  background-image: none;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.header-overlay .navbar-toggler-icon::before,
.header-overlay .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
}
.header-overlay .navbar-toggler-icon::before {
  top: 6px;
}
.header-overlay .navbar-toggler-icon::after {
  bottom: 6px;
}

/* Value Props */
.value-props {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: linear-gradient(
    90deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: var(--light-accent-color);
  text-align: center;
}

.value-props__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  line-height: var(--line-height-heading);
}

.vp-item {
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vp-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}
.vp-icon svg {
  width: 64px;
  height: 64px;
}

.vp-title {
  font-weight: 800;
  font-size: clamp(1.375rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #fff;
}

.vp-text {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 34rem;
  color: #f8f9ff;
  opacity: 0.95;
}

/* Slightly larger icons/titles on big screens */
@media (min-width: 1200px) {
  .vp-icon svg {
    width: 72px;
    height: 72px;
  }
  .vp-title {
    font-size: 2rem;
  }
}

/* Footer Styles */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text-color);
  padding: var(--spacing-large) 0;
  padding-top: var(--spacing-xxlarge);
  line-height: var(--line-height-base);
}

.footer__cols {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xlarge);
}

.footer__about .footer__logo {
  font-size: 36px;
  text-decoration: none;
  color: #ffffff;
}
.footer__about .footer__logo span {
  font-weight: 800;
}

@media (min-width: 1024px) {
  .footer__cols {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__col {
  flex: 1;
}

.footer__about .footer__logo svg {
  max-width: 140px;
  height: auto;
}

.footer__about .footer__desc {
  margin: var(--spacing-medium) 0;
  color: var(--footer-text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer__heading {
  margin-bottom: var(--spacing-medium);
  color: var(--footer-heading-color);
  font-size: var(--font-size-medium);
  line-height: var(--line-height-medium);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.footer__links,
.footer__social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li + li {
  margin-top: var(--spacing-small);
}

.footer__links a {
  color: var(--footer-text-color);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-regular);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__social {
  display: flex;
  gap: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
}

.footer__social img {
  display: block;
  width: 24px;
  height: 24px;
}

.footer__badges {
  display: flex;
  gap: var(--spacing-medium);
}

.footer__badges img {
  display: block;
  height: 40px;
  width: auto;
}

.footer__legal {
  text-align: center;
  margin-top: var(--spacing-large);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--footer-text-muted);
}

@media (min-width: 768px) {
  .footer__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-large);
  }
}

@media (min-width: 1024px) {
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__about .footer__logo svg {
    max-width: 160px;
  }

  .footer__about .footer__desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .footer__heading {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .footer__links a {
    font-size: 1rem;
    line-height: 1.6;
  }

  .footer__social img {
    width: 28px;
    height: 28px;
  }

  .footer__badges img {
    height: 48px;
  }

  .footer__legal {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (min-width: 1440px) {
  .footer__about .footer__logo svg {
    max-width: 180px;
  }

  .footer__about .footer__desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .footer__heading {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .footer__links a {
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  .footer__social img {
    width: 42px;
    height: 42px;
  }

  .footer__badges img {
    height: 56px;
  }

  .footer__legal {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* Hero Section Styles */
.hero {
  background-color: var(--bg-primary-dark);
  color: #ffffff;
  padding: var(--spacing-xxlarge) var(--spacing-medium);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-large);
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .hero__inner {
    gap: 0;
  }
}

.hero__content {
  max-width: 500px;
  text-align: center;
}

.hero__title {
  font-family: var(--font-family-outfit);
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-medium);
  color: #ffffff;
}

.hero__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-large);
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .hero__text {
    font-size: 1.0625rem;
    line-height: 1.7;
  }
}

@media (min-width: 1440px) {
  .hero__title {
    font-size: 3rem;
    line-height: 1.15;
  }

  .hero__text {
    font-size: 1.125rem;
    line-height: 1.7;
  }
  .hero__content {
    max-width: 550px;
  }
}

/* Why Trust Easy Ex Section Styles */
.showcase-panel {
  padding: var(--spacing-xlarge) var(--spacing-xxlarge);
}

.showcase-panel__inner {
  text-align: center;
}

.showcase-panel__title {
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xxlarge);
  line-height: var(--line-height-heading);
}

.showcase-panel__grid {
  display: grid;
  gap: var(--spacing-large);
}

@media (min-width: 768px) {
  .showcase-panel__title {
    padding: 0 10rem;
  }
  .showcase-panel__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.showcase-panel__card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-large);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcase-panel__icon {
  width: 64px;
  height: auto;
  margin-bottom: var(--spacing-small);
}

.showcase-panel__card-title {
  font-size: var(--font-size-medium);
  line-height: var(--line-height-medium);
  font-weight: var(--font-weight-bold);
  margin: var(--spacing-small) 0;
}

.showcase-panel__card-text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-secondary);
  margin-top: 0;
  margin-bottom: var(--spacing-small);
}

@media (min-width: 1024px) {
  .showcase-panel__title {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .showcase-panel__card-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .showcase-panel__card-text {
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  .showcase-panel__icon {
    width: 80px;
  }

  .showcase-panel__grid {
    gap: var(--spacing-xxlarge);
  }
}

@media (min-width: 1440px) {
  .showcase-panel__title {
    font-size: 2.6rem;
    line-height: 1.15;
  }

  .showcase-panel__card-title {
    font-size: 1.375rem;
    line-height: 1.3;
  }

  .showcase-panel__card-text {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .showcase-panel__icon {
    width: 96px;
  }
}

/* Large Transfers Support Section Styles */
.feature {
  padding: var(--spacing-xxlarge) var(--spacing-medium);
  background-color: var(--bg-secondary);
}

.feature__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xlarge);
}

.feature__media img {
  display: block;
  max-width: 100%;
  height: auto;
}

.feature__content {
  text-align: center;
  max-width: 500px;
}

.feature__title {
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-medium);
}

.feature__text {
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-medium);
}

.feature__link {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .feature__inner {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .feature__content {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .feature__title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .feature__text {
    font-size: 1.0625rem;
    line-height: 1.7;
  }

  .feature__link {
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  .feature__media img {
    max-width: 500px;
  }
}

@media (min-width: 1440px) {
  .feature__title {
    font-size: 2.5rem;
    line-height: 1.15;
  }

  .feature__text {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .feature__link {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .feature__media img {
    max-width: 600px;
  }
}

/* Reliable Transfers Every Time Section Styles*/
.twin-feature {
  padding: var(--spacing-xxlarge) 0;
}

.twin-feature__inner {
  text-align: center;
}

.twin-feature__title {
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-xxlarge);
}

.twin-feature__grid {
  display: grid;
  gap: var(--spacing-xlarge);
}

@media (min-width: 786px) {
  .twin-feature__title {
    padding: 0 10rem;
  }
  .twin-feature__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.twin-feature__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.twin-feature__icon {
  width: 64px;
  height: auto;
}

.twin-feature__item-title {
  font-size: var(--font-size-medium);
  line-height: var(--line-height-medium);
  font-weight: var(--font-weight-bold);
  margin-top: var(--spacing-medium);
}

.twin-feature__item-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  color: var(--color-text-secondary);
}

@media (min-width: 1024px) {
  .twin-feature__title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .twin-feature__item-title {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .twin-feature__item-text {
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  .twin-feature__icon {
    width: 80px;
  }
}

@media (min-width: 1440px) {
  .twin-feature__title {
    font-size: 2.5rem;
    line-height: 1.15;
  }

  .twin-feature__item-title {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .twin-feature__item-text {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .twin-feature__icon {
    width: 100px;
  }
}

/* Mobile App Promotion Section Styles */
.mobile-app {
  padding: var(--spacing-xxlarge);
  padding-top: 0;
  background-color: var(--bg-primary);
}

.mobile-app__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-large);
}

@media (min-width: 768px) {
  .mobile-app__inner {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

.mobile-app__content {
  max-width: 480px;
  text-align: center;
  color: var(--color-text-light);
}
@media (min-width: 768px) {
  .mobile-app__content {
    text-align: left;
  }
}

.mobile-app__title {
  font-size: var(--font-size-heading);
  line-height: var(--line-height-heading);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-large);
}

.mobile-app__text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--spacing-large);
}

.mobile-app__buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-small);
}
@media (min-width: 768px) {
  .mobile-app__buttons {
    justify-content: flex-start;
  }
}

.mobile-app__store-badge {
  height: 48px;
  width: auto;
  display: block;
}

.mobile-app__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-app__illustration {
  display: block;
  max-width: 100%;
  height: 285px;
}

@media (min-width: 1024px) {
  .mobile-app__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .mobile-app__text {
    font-size: 1.0625rem;
    line-height: 1.7;
  }

  .mobile-app__store-badge {
    height: 56px;
  }

  .mobile-app__illustration {
    height: 500px;
  }
}

@media (min-width: 1440px) {
  .mobile-app__title {
    font-size: 2.25rem;
    line-height: 1.15;
  }

  .mobile-app__text {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .mobile-app__store-badge {
    height: 64px;
  }

  .mobile-app__illustration {
    height: 600px;
  }
}

/* FAQ Carousel Styles */
.carousel-panel {
  background-color: var(--color-bg);
  padding: var(--spacing-xxlarge) var(--spacing-medium);
}

.carousel-panel__inner {
  text-align: center;
}

.carousel-panel__title {
  font-size: var(--font-size-heading);
  line-height: var(--line-height-heading);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-small);
}

.carousel-panel__subtitle {
  font-size: var(--font-size-medium);
  line-height: var(--line-height-medium);
  color: var(--color-subtext);
  margin-bottom: var(--spacing-xlarge);
}

.carousel-panel__carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-panel__nav {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: var(--font-size-heading);
  line-height: 1;
  padding: var(--spacing-small);
  cursor: pointer;
  flex: 0 0 auto;
  display: none;
}
@media (min-width: 1024px) {
  .carousel-panel__nav {
    display: block;
  }
}
.carousel-panel__nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-panel__track {
  display: flex;
  gap: var(--spacing-medium);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--spacing-small);
  margin: 0 var(--spacing-small);
  margin-bottom: var(--spacing-large);
  scrollbar-width: none; /* Firefox */
}
.carousel-panel__track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-panel__card {
  background-color: var(--card-bg);
  color: #11121a;
  flex: 0 0 350px;
  height: 565px;
  scroll-snap-align: start;
  padding: var(--spacing-large);
  text-align: left;
}

.carousel-panel__card-title {
  font-size: var(--font-size-medium);
  line-height: var(--line-height-medium);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-small);
}

.carousel-panel__card-text {
  font-size: var(--font-size-small);
  line-height: var(--line-height-base);
  color: var(--color-subtext);
}

.carousel-panel__card-subtext {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-medium);
  color: var(--color-text-secondary);
}

.carousel-panel__card-text li {
  margin-left: var(--spacing-large);
}

.carousel-panel__card a {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

.carousel-panel__cta {
  text-align: center;
  margin-top: var(--spacing-xxlarge);
  font-size: var(--font-size-large);
  line-height: var(--line-height-large);
  font-weight: var(--font-weight-bold);
}
.carousel-panel__cta a {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-medium);
  line-height: var(--line-height-medium);
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .carousel-panel__card {
    height: 545px;
  }

  .carousel-panel__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .carousel-panel__subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .carousel-panel__card-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .carousel-panel__card-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .carousel-panel__cta {
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .carousel-panel__cta a {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

@media (min-width: 1440px) {
  .carousel-panel__card {
    height: 585px;
  }
  .carousel-panel__title {
    font-size: 2.25rem;
    line-height: 1.15;
  }

  .carousel-panel__subtitle {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .carousel-panel__card-title {
    font-size: 1.375rem;
    line-height: 1.3;
  }

  .carousel-panel__card-text {
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  .carousel-panel__cta {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .carousel-panel__cta a {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
