/* ============================================
   LANDING PAGE STYLES
   Colors: Orange #F5A623, Dark #2D3748, Gray #F7F7F7
   Font: Playfair Display (titles), System (body)
   ============================================ */
/* ---------- VARIABLES ---------- */
:root {
  --orange: #fea30b;
  --dark: #262f35;
  --gray-bg: #949494;
  --white: #fff;
  --text-gray: #949494;
}
/* Smooth scroll for anchor navigation */
html {
  scroll-behavior: smooth;
}
/* Container styles */
@media (min-width: 1400px) {
  body.pagelayout-landing .container-fluid {
    max-width: 100vw;
  }
}
@media (min-width: 576px) {
  body.pagelayout-landing .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  body.pagelayout-landing .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  body.pagelayout-landing .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  body.pagelayout-landing .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  body.pagelayout-landing .container {
    max-width: 1340px;
  }
}
/* Main content full width */
#main-content.landing-content {
  padding: 0;
}
#main-content.landing-content [role='main'] #user-notifications:empty,
#main-content.landing-content [role='main'] #maincontent:empty {
  /* Hide empty user notifications and main content */
  display: none;
}
/* Landing page header styles */
.landing-header {
  background: #fea30b;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.landing-header a {
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
  padding: 10px;
  text-align: center;
  text-decoration: underline transparent;
  transition: text-decoration-color 0.25s;
}
.landing-header a:hover {
  text-decoration-color: currentColor;
}
.landing-header .logo {
  display: inline-block;
  margin: -10px;
  margin-left: 0;
}
.landing-header .logo img {
  height: 59px;
  filter: brightness(0) invert(1);
  width: auto;
}
.landing-header .landing-nav {
  display: none;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .landing-header .landing-nav {
    display: flex;
  }
}
.landing-header .landing-header-actions {
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .landing-header .landing-header-actions {
    display: flex;
  }
}
.landing-header .landing-header-actions .signin-link {
  color: #fff;
  text-decoration: transparent underline;
  transition: text-decoration-color 0.25s;
}
.landing-header .landing-header-actions .signin-link:hover {
  text-decoration-color: currentColor;
}
.landing-header .landing-header-actions .cta-btn {
  background: #fea30b;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none !important;
  transition: background-color 0.25s, color 0.25s;
}
.landing-header .landing-header-actions .cta-btn:hover {
  background: #fff;
  color: #fea30b;
}
.landing-header .landing-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
}
@media (min-width: 769px) {
  .landing-header .landing-menu-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .landing-header .container-fluid {
    padding: 0 15px;
  }
}
/* Hero Section */
.landing-hero {
  background: #fea30b;
  padding: 40px 0;
}
@media (min-width: 1200px) {
  .landing-hero {
    padding: 60px 40px;
  }
}
.landing-hero .hero-content {
  /* ---------- HERO SECTION ---------- */
}
@media (max-width: 991px) {
  .landing-hero .hero-content {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .landing-hero .hero-content {
    padding-right: 40px;
  }
}
.landing-hero .hero-content .hero-badge {
  display: inline-block;
  background: #fff;
  color: #262f35 !important;
  padding: 4px 20px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 21px;
  text-transform: uppercase;
}
@media (min-width: 575px) {
  .landing-hero .hero-content .hero-badge {
    font-size: 18px;
  }
}
.landing-hero .hero-content .hero-title,
.landing-hero .hero-content h1 {
  color: #262f35;
  font-family: 'Fjalla One', sans-serif;
  font-size: 36px;
  letter-spacing: 0.25px;
  line-height: 1.2em;
  margin-block-end: 10px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .landing-hero .hero-content .hero-title,
  .landing-hero .hero-content h1 {
    font-size: 46px;
  }
}
@media (min-width: 1200px) {
  .landing-hero .hero-content .hero-title,
  .landing-hero .hero-content h1 {
    font-size: 56px;
  }
}
.landing-hero .hero-content .hero-description,
.landing-hero .hero-content p {
  color: #262f35;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 24px;
}
.landing-hero .hero-content .hero-ctas {
  display: flex;
  gap: 16px 32px;
  margin-block: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .landing-hero .hero-content .hero-ctas {
    flex-direction: row;
    margin-block: 35px 20px;
  }
}
.landing-hero .hero-content .btn-primary,
.landing-hero .hero-content .btn-outline,
.landing-hero .hero-content .hero-ctas a {
  font-family: 'Fjalla One', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s, color 0.25s;
}
.landing-hero .hero-content .btn-primary,
.landing-hero .hero-content .hero-ctas a:first-child {
  background: #262f35;
  border: none;
  color: #fff !important;
}
.landing-hero .hero-content .btn-primary:hover,
.landing-hero .hero-content .hero-ctas a:first-child:hover {
  background: #000000;
  color: #fff !important;
  text-decoration: none;
}
.landing-hero .hero-content .btn-outline,
.landing-hero .hero-content .hero-ctas a:last-child {
  background: #fff;
  border: 2px solid #fff;
  color: #262f35 !important;
}
.landing-hero .hero-content .btn-outline:hover,
.landing-hero .hero-content .hero-ctas a:last-child:hover {
  background: #262f35;
  color: #fff !important;
  text-decoration: none;
}
.landing-hero .hero-content .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 575px) {
  .landing-hero .hero-content .hero-stats {
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .landing-hero .hero-content .hero-stats {
    gap: 32px;
  }
}
@media (min-width: 1200px) {
  .landing-hero .hero-content .hero-stats {
    gap: 48px;
  }
}
.landing-hero .hero-content .hero-stats .stat {
  color: #262f35;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 1.5em;
}
@media (min-width: 575px) {
  .landing-hero .hero-content .hero-stats .stat {
    font-size: 16px;
  }
}
.landing-hero .hero-video {
  overflow: hidden;
}
.landing-hero .hero-video .embed-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.landing-hero .hero-video .embed-responsive .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(191, 191, 191, 0.5);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.25s ease;
}
.landing-hero .hero-video .embed-responsive .video-overlay + iframe {
  filter: blur(1px);
}
.landing-hero .hero-video .embed-responsive .video-overlay .video-overlay-content {
  text-align: center;
  padding: 20px;
}
.landing-hero .hero-video .embed-responsive .video-overlay .video-overlay-content .video-overlay-title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.66);
}
.landing-hero .hero-video .embed-responsive .video-overlay .video-overlay-content .video-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  color: #262f35 !important;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  margin: 0 auto;
}
.landing-hero .hero-video .embed-responsive .video-overlay .video-overlay-content .video-play-btn i.fa-sharp {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #262f35;
  margin-left: 6px;
}
.landing-hero .hero-video .embed-responsive .video-overlay .video-overlay-content .video-play-btn i.fa-sharp::before {
  display: none;
}
.landing-hero .hero-video .embed-responsive .video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.landing-hero .hero-video .embed-responsive .video-overlay.hidden + iframe {
  filter: unset;
}
.landing-hero .hero-video .embed-responsive .video-overlay:hover .video-overlay-content .video-play-btn {
  background: #fea30b;
  border-color: #fea30b;
}
.landing-hero .hero-video .embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Stats Bar */
.landing-stats-bar {
  background: #262f35;
  padding: 24px 0;
}
@media (min-width: 1200px) {
  .landing-stats-bar {
    padding: 30px 0;
  }
}
.landing-stats-bar .container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
@media (min-width: 768px) {
  .landing-stats-bar .container {
    flex-direction: row;
    gap: 30px;
  }
}
.landing-stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 65px;
  text-align: center;
}
.landing-stats-bar .stat-value {
  color: #fff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1em;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .landing-stats-bar .stat-value {
    font-size: 1.8rem;
  }
}
.landing-stats-bar .stat-label {
  font-size: 16px;
  color: #fff;
  line-height: 1em;
}
/* Curriculum Section */
.landing-curriculum {
  padding: 60px 0;
  background: #fff;
}
@media (min-width: 450px) {
  .landing-curriculum {
    padding: 60px 16px;
  }
}
.landing-curriculum .section-title,
.landing-curriculum h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 48px !important;
  font-weight: 400;
  line-height: 1.333em !important;
  text-transform: uppercase;
  color: #262f35;
  text-align: center;
  margin-bottom: 16px;
}
.landing-curriculum .section-subtitle,
.landing-curriculum p {
  color: #262f35;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 48px;
  text-align: center;
}
.landing-curriculum .curriculum-grid {
  grid-template-columns: 1fr;
  padding: 16px 0;
  padding-bottom: 8px;
}
@media (min-width: 992px) {
  .landing-curriculum .curriculum-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 32px 16px;
  }
}
.landing-curriculum .curriculum-grid .curriculum-chapter {
  background: #fff;
  height: 100%;
  position: relative;
  z-index: 0;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .curriculum-chapter-inner {
  background: #fff;
  border: 1px solid #fea30b;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
}
.landing-curriculum .curriculum-grid .curriculum-chapter::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  transition: top 0.25s, left 0.25s;
  z-index: -1;
}
.landing-curriculum .curriculum-grid .curriculum-chapter:has(.chapter-btn:hover)::after {
  top: 9px;
  left: -9px;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-number {
  background: #fea30b;
  color: #fff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 24px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-meta {
  font-size: 16px;
  color: #949494;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-title {
  color: #262f35;
  font-family: 'Fjalla One', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .lesson-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .lesson-list li {
  color: #262f35;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.25em;
  margin-bottom: 7px;
  padding: 0;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .lesson-list li i {
  color: #fea30b;
  margin-right: 8px;
  font-size: 1.25em;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .lesson-list li i.fa-lock {
  font-size: 0.8em;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .View_chapter_details____ {
  font-size: 16px;
  font-family: 'Fjalla One';
  color: #262f35;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  left: 861.897px;
  top: 1324.328px;
  width: 192px;
  height: 13px;
  z-index: 117;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn {
  background: #fff;
  border: 1px solid #262f35;
  border-radius: 0;
  color: #262f35;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fjalla One', sans-serif;
  font-size: 16px;
  font-weight: 400 !important;
  letter-spacing: 1px;
  line-height: 1.25em;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
  width: 100%;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn i.fa-chevron-right {
  transform: scaleY(0.6);
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn:hover {
  background: #fea30b;
  border-color: #fea30b;
  color: #fff;
  text-decoration: none;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn.btn-filled {
  background: #fea30b;
  color: #fff !important;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn.btn-outline {
  background: transparent;
  color: #262f35 !important;
  border: 2px solid #262f35;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn.btn-locked {
  background: #fea30b;
  color: #fff !important;
  cursor: default;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn .fa-chevron-right {
  opacity: 0;
  margin-left: 1px;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn .fa-chevron-right:nth-last-child(1) {
  opacity: 1;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn .fa-chevron-right:nth-last-child(2) {
  opacity: 0.66;
}
.landing-curriculum .curriculum-grid .curriculum-chapter .chapter-btn .fa-chevron-right:nth-last-child(3) {
  margin-left: 4px;
  opacity: 0.33;
}
.landing-curriculum .curriculum-grid .curriculum-chapter.curriculum-chapter-gated::after {
  content: none;
}
.landing-curriculum .curriculum-grid .curriculum-chapter.curriculum-chapter-gated .curriculum-chapter-inner {
  border-color: #949494;
}
.landing-curriculum .curriculum-grid .curriculum-chapter.curriculum-chapter-gated .curriculum-chapter-inner .chapter-number {
  background: #949494;
}
.landing-curriculum .curriculum-grid .curriculum-chapter.curriculum-chapter-gated .curriculum-chapter-inner .lesson-list li i {
  color: #949494;
}
.landing-curriculum .curriculum-grid .curriculum-chapter.curriculum-chapter-gated .curriculum-chapter-inner .chapter-btn {
  background: #949494;
  border-color: #949494;
  color: #fff;
}
.landing-curriculum .curriculum-grid .curriculum-chapter.curriculum-chapter-gated .curriculum-chapter-inner .chapter-btn:hover {
  background: #949494;
  color: #fff;
  text-decoration: none;
}
.landing-curriculum .btn-view-all {
  background: #262f35;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  color: #fff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 8px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease;
}
.landing-curriculum .btn-view-all:hover {
  background: #fea30b;
}
/* ---------- SIGNUP BANNER ---------- */
.signup-banner {
  background: #fea30b;
  padding: 25px 0;
  text-align: center;
}
.signup-banner .signup-banner-inner {
  margin: 0 auto;
  position: relative;
}
.signup-banner h2,
.signup-banner .signup-banner-title {
  color: #262f35 !important;
  font-family: 'Fjalla One', sans-serif;
  font-weight: 400 !important;
  margin-bottom: 10px;
  padding: 0;
  text-transform: none;
}
.signup-banner .signup-banner-btn-wrap {
  position: relative;
  margin-top: 0;
}
.signup-banner .signup-banner-btn-wrap::before {
  content: '';
  position: absolute;
  width: 80vw;
  min-width: 290px;
  border-top: #fff solid 1px;
  top: 50%;
  transform: translate(-50%);
  left: 50%;
}
.signup-banner a,
.signup-banner .signup-banner-btn {
  display: inline-block;
  background: #fea30b;
  color: #fff !important;
  padding: 0 95px 0 30px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 41px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease;
  border: none;
  outline: none;
  position: relative;
}
.signup-banner a::after,
.signup-banner .signup-banner-btn::after {
  content: '';
  background-image: url(../pix/icn/icnChevron.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 25px;
  transform: translateY(-50%);
}
.signup-banner a:hover,
.signup-banner .signup-banner-btn:hover {
  background: #fea30b !important;
  color: #fff !important;
  text-decoration: none;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
/* ---------- INSTRUCTOR SECTION ---------- */
.instructor-section {
  background: #262f35;
  padding: 80px 20px;
  border-top: 6px solid #fea30b;
}
.instructor-section .instructor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .instructor-section .instructor-grid {
    gap: 24px;
    grid-template-columns: 240px 1fr;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .instructor-section .instructor-grid {
    gap: 30px;
    grid-template-columns: 300px 1fr;
  }
}
.instructor-section .instructor-grid .instructor-photo {
  text-align: center;
  max-width: 360px;
  margin: auto;
}
.instructor-section .instructor-grid .instructor-photo img {
  display: block;
  object-fit: cover;
  width: 100%;
}
.instructor-section .instructor-grid .instructor-content {
  color: #fff;
  padding-inline: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .instructor-section .instructor-grid .instructor-content {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .instructor-section .instructor-grid .instructor-content {
    padding-inline: 20px;
  }
}
@media (min-width: 1200px) {
  .instructor-section .instructor-grid .instructor-content {
    padding-inline: 40px;
  }
}
.instructor-section .instructor-grid .instructor-content .section-badge {
  display: inline-block;
  background: #fff;
  color: #262f35;
  font-family: 'Fjalla One', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding: 2px 16px;
  text-transform: uppercase;
}
.instructor-section .instructor-grid .instructor-content p:has(> .section-badge) {
  text-align: center;
}
@media (min-width: 768px) {
  .instructor-section .instructor-grid .instructor-content p:has(> .section-badge) {
    text-align: left;
  }
}
.instructor-section .instructor-grid .instructor-content .section-title,
.instructor-section .instructor-grid .instructor-content h2 {
  color: #fff;
  font-family: 'Fjalla One', sans-serif;
  padding-top: 0 !important;
}
.instructor-section .instructor-grid .instructor-content .instructor-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.instructor-section .instructor-grid .instructor-content .instructor-bio {
  color: #fff;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.instructor-section .instructor-grid .instructor-content .instructor-stat {
  color: #fff;
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .instructor-section .instructor-grid .instructor-content .instructor-stat {
    justify-content: flex-start;
  }
}
.instructor-section .instructor-grid .instructor-content .instructor-stat i {
  color: inherit;
}
/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-section {
  background: #fff;
  padding: 80px 20px;
}
.testimonials-section .section-title,
.testimonials-section h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: #262f35;
  margin-bottom: 16px;
}
.testimonials-section .section-subtitle {
  text-align: center;
  color: #262f35;
  font-size: 18px;
  margin-bottom: 48px;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1292px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: stretch;
}
@media (min-width: 992px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials-section .testimonials-grid .testimonial-card {
  display: flex;
  flex-direction: column;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-bubble {
  background: #f2f2f2;
  padding: 32px;
  position: relative;
  margin-bottom: 20px;
  flex: 1;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -45px;
  right: 32px;
  width: 50px;
  height: 45px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 45'%3E%3Cpolygon points='0,0 50,0 0,45' fill='%23f2f2f2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-bubble .stars {
  color: #fea30b;
  font-size: 28px;
  margin-bottom: 4px;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-bubble .testimonial-text {
  color: #262f35;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 0;
  font-style: normal;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author .author-avatar {
  width: 48px;
  height: 48px;
  background: #e0e0e0;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author .author-info {
  display: flex;
  flex-direction: column;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author .author-info .author-name {
  color: #262f35;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author .author-info .author-title {
  color: #262f35;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}
/* Landing page footer styles */
.landing-footer {
  background: #262f35;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
