/** Shopify CDN: Minification failed

Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:26 Expected ":"
Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
Line 24:25 Expected ":"
Line 24:49 Expected ":"
Line 39:10 Expected identifier but found whitespace
Line 39:12 Unexpected "{"
Line 39:21 Expected ":"
... and 114 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-content (INDEX:1) */
.about-content {
    padding: 4rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .about-content__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }

  .about-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 2rem;
    color: {{ section.settings.title_color }};
  }

  .about-content__body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
  }

  .about-content__body p {
    margin: 0 0 1.25rem;
  }

  .about-content__body p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 768px) {
    .about-content {
      padding: 3rem 1.5rem;
    }

    .about-content__title {
      font-size: 1.75rem;
    }

    .about-content__body {
      font-size: 1rem;
    }
  }
/* END_SECTION:about-content */

/* START_SECTION:about-hero-image (INDEX:2) */
.about-hero-image {
    max-width: {{ section.settings.max_width }}px;
    margin: {{ section.settings.section_margin }}px auto 0;
    border-radius: {{ section.settings.border_radius }}px;
    overflow: hidden;
  }

  .about-hero-image__img {
    display: block;
    width: 100%;
    height: {{ section.settings.image_height }}px;
    object-fit: cover;
  }

  .about-hero-image__placeholder {
    width: 100%;
    background: #e8eaf0;
  }

  .about-hero-image__placeholder svg {
    display: block;
    width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .about-hero-image {
      margin-top: {{ section.settings.section_margin | divided_by: 2 }}px;
    }

    .about-hero-image__img {
      height: 250px;
    }
  }
/* END_SECTION:about-hero-image */

/* START_SECTION:article (INDEX:3) */
.article {
    padding: 4rem 2rem;
    background: var(--article-background-color);
  }

  .article__container {
    max-width: var(--article-max-width);
    margin: 0 auto;
  }

  .article__header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .article__title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--article-title-color);
  }

  .article__meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin: 0;
  }

  .article__image-wrap {
    margin: 0 0 2.5rem;
    border-radius: 12px;
    overflow: hidden;
  }

  .article__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .article__content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
  }

  .article__content > *:first-child {
    margin-top: 0;
  }

  .article__content p {
    margin: 0 0 1.25rem;
  }

  .article__content h2,
  .article__content h3,
  .article__content h4 {
    color: var(--article-title-color);
    line-height: 1.3;
    margin: 2.5rem 0 1rem;
  }

  .article__content h2 { font-size: 1.75rem; }
  .article__content h3 { font-size: 1.4rem; }
  .article__content h4 { font-size: 1.2rem; }

  .article__content a {
    color: var(--article-accent-color);
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  .article__content a:hover {
    color: #FFB800;
  }

  .article__content ul,
  .article__content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
  }

  .article__content li {
    margin-bottom: 0.5rem;
  }

  .article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
  }

  .article__content blockquote {
    margin: 1.5rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 4px solid var(--article-accent-color);
    color: #555;
    font-style: italic;
  }

  /* Free practice test CTA */
  .article-ptcta {
    margin: 0 0 2.5rem;
    padding: 1.5rem 1.75rem;
    background: #f5f7fc;
    border: 1px solid #dfe4f2;
    border-left: 4px solid var(--article-accent-color);
    border-radius: 12px;
  }

  .article-ptcta__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--article-accent-color);
  }

  .article-ptcta__lede {
    margin: 0 0 1.1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }

  .article-ptcta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .article-ptcta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: var(--article-accent-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .article-ptcta__btn:hover {
    background: #FFB800;
    color: #1c2333;
  }

  .article-ptcta__foot {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #666;
  }

  .article-ptcta__foot a {
    color: var(--article-accent-color);
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .article-ptcta {
      padding: 1.25rem;
    }

    .article-ptcta__btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* Comments */
  .article__comments {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid #eee;
  }

  .article__comments-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--article-title-color);
    margin: 0 0 1.5rem;
  }

  .article__comment {
    padding: 1.25rem 1.5rem;
    background: #f7f8fa;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .article__comment-author {
    font-weight: 600;
    color: var(--article-title-color);
    margin: 0;
  }

  .article__comment-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    margin: 0.15rem 0 0.75rem;
  }

  .article__comment-body {
    margin: 0;
    line-height: 1.7;
    color: #444;
  }

  .article__comments-pagination {
    margin: 1.5rem 0;
    text-align: center;
  }

  /* Comment form */
  .article__form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--article-title-color);
    margin: 2.5rem 0 1.5rem;
  }

  .article__form-row--split {
    display: flex;
    gap: 1.5rem;
  }

  .article__form-field {
    flex: 1 1 auto;
    margin-bottom: 1.25rem;
  }

  .article__form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
  }

  .article__form-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    background: #fff;
    border: 1px solid #d8dbe2;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .article__form-input:focus {
    outline: none;
    border-color: var(--article-accent-color);
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.15);
  }

  .article__form-textarea {
    min-height: 140px;
    resize: vertical;
  }

  .article__form-submit {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--article-accent-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .article__form-submit:hover {
    background: #FFB800;
  }

  @media (max-width: 768px) {
    .article {
      padding: 3rem 1.5rem;
    }

    .article__title {
      font-size: 1.9rem;
    }

    .article__content {
      font-size: 1rem;
    }

    .article__form-row--split {
      flex-direction: column;
      gap: 0;
    }
  }
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:4) */
.blog {
    padding: 4rem 2rem;
    background: var(--blog-background-color);
  }

  .blog__container {
    max-width: var(--blog-max-width);
    margin: 0 auto;
  }

  .blog__heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 3rem;
    color: var(--blog-heading-color);
  }

  .blog__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .blog__article {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
  }

  .blog__list .blog__article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .blog__article-image-link {
    flex: 0 0 280px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
  }

  .blog__article-image {
    display: block;
    width: 280px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .blog__article-image-link:hover .blog__article-image {
    transform: scale(1.04);
  }

  .blog__article-body {
    flex: 1 1 auto;
    min-width: 0;
  }

  .blog__article-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem;
  }

  .blog__article-link {
    color: var(--blog-heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .blog__article-link:hover {
    color: #FFB800;
  }

  .blog__article-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin: 0 0 1rem;
  }

  .blog__article-excerpt {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 1rem;
  }

  .blog__article-readmore {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blog-accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .blog__article-readmore:hover {
    color: #FFB800;
  }

  .blog__pagination {
    margin-top: 3.5rem;
    text-align: center;
  }

  .blog__pagination .pagination,
  .blog__pagination ul {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .blog__pagination a,
  .blog__pagination span {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--blog-accent-color);
  }

  .blog__pagination a:hover {
    background: #f3f4f8;
  }

  .blog__pagination .current,
  .blog__pagination [aria-current] {
    background: var(--blog-accent-color);
    color: #fff;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .blog {
      padding: 3rem 1.5rem;
    }

    .blog__heading {
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

    .blog__article {
      flex-direction: column;
      gap: 1rem;
    }

    .blog__article-image-link {
      flex: 0 0 auto;
      width: 100%;
    }

    .blog__article-image {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
    }

    .blog__article-title {
      font-size: 1.25rem;
    }
  }
/* END_SECTION:blog */

/* START_SECTION:collection-grid (INDEX:6) */
.collection-grid {
    padding: 2rem 2rem 4rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .collection-grid__container {
    width: 100%;
  }

  .collection-grid__items {
    display: grid;
    grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr);
    gap: 2rem;
  }

  .collection-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: white;
  }

  .collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .collection-card__image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: #F5F5F5;
  }

  .collection-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-card__placeholder svg {
    width: 100%;
    height: 100%;
  }

  .collection-card__content {
    padding: 1.5rem;
  }

  .collection-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #333;
  }

  .collection-card__count {
    font-weight: 400;
    color: #666;
  }

  @media (max-width: 1024px) {
    .collection-grid__items {
      grid-template-columns: repeat({{ section.settings.columns_tablet }}, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .collection-grid {
      padding: 1.5rem 1.5rem 3rem;
    }

    .collection-grid__items {
      grid-template-columns: repeat({{ section.settings.columns_mobile }}, 1fr);
      gap: 1.25rem;
    }

    .collection-card__content {
      padding: 1rem;
    }

    .collection-card__title {
      font-size: 1rem;
    }
  }
/* END_SECTION:collection-grid */

/* START_SECTION:collection-header (INDEX:7) */
.collection-header {
    padding: 1.5rem 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .collection-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .collection-header__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
  }

  .collection-header__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .collection-header__filter {
    position: relative;
    display: flex;
    align-items: center;
  }

  .collection-header__filter-select {
    appearance: none;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    min-width: 180px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .collection-header__filter-select:focus {
    outline: none;
    border-color: #5B6B9E;
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.1);
  }

  .collection-header__filter-icon {
    position: absolute;
    right: 0.75rem;
    pointer-events: none;
    color: #666;
  }

  .collection-header__search {
    flex-shrink: 0;
    position: relative;
  }

  .collection-header__search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .collection-header__search-input {
    width: 280px;
    padding: 0.75rem 2.75rem 0.75rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .collection-header__search-input:focus {
    outline: none;
    border-color: #5B6B9E;
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.1);
  }

  .collection-header__search-input::placeholder {
    color: #999;
  }

  .collection-header__search-icon {
    position: absolute;
    right: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .collection-header__search-status {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: #666;
    white-space: nowrap;
    pointer-events: none;
  }

  @media (max-width: 768px) {
    .collection-header {
      padding: 1rem 1.5rem;
    }

    .collection-header__container {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .collection-header__title {
      font-size: 1.5rem;
    }

    .collection-header__controls {
      width: 100%;
      flex-direction: column;
      gap: 0.75rem;
    }

    .collection-header__filter {
      width: 100%;
    }

    .collection-header__filter-select {
      width: 100%;
    }

    .collection-header__search {
      width: 100%;
    }

    .collection-header__search-input {
      width: 100%;
    }

    .collection-header__search-status {
      position: static;
      margin-top: 0.5rem;
    }
  }
/* END_SECTION:collection-header */

/* START_SECTION:collection (INDEX:8) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections-list (INDEX:9) */
.collections-list {
    padding: 1.5rem 2rem 3rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .collections-list__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .collections-list__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }

  .collections-list__description {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
  }

  .collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .collection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .collection-card__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
  }

  .collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .collection-card:hover .collection-card__image img {
    transform: scale(1.05);
  }

  .collection-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  }

  .collection-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .collection-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .collection-card__description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
  }

  .collection-card__count {
    font-size: 0.875rem;
    color: #5B6B9E;
    font-weight: 600;
  }

  .collection-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5B6B9E;
    font-weight: 600;
    margin-top: 1rem;
  }

  .collection-card__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }

  .collection-card:hover .collection-card__cta svg {
    transform: translateX(5px);
  }

  @media (max-width: 1024px) {
    .collections-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .collections-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .collections-list__title {
      font-size: 2rem;
    }

    .collections-list {
      padding: 1rem 1.5rem 2rem;
    }
  }
/* END_SECTION:collections-list */

/* START_SECTION:collections (INDEX:10) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:11) */
.contact-form {
    padding: 0 2rem 4rem;
  }

  .contact-form__container {
    margin: 0 auto;
  }

  .contact-form__success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .contact-form__success p {
    margin: 0;
  }

  .contact-form__errors {
    background: #fdecea;
    color: #b71c1c;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .contact-form__field {
    margin-bottom: 1.25rem;
  }

  .contact-form__label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
  }

  .contact-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
  }

  .contact-form__input:focus {
    outline: none;
    border-color: #5B6B9E;
  }

  .contact-form__textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form__help {
    margin: 0.45rem 0 0;
    color: #5a5a5a;
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .contact-form__submit {
    display: inline-block;
    background: #FFB800;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: 0.5rem;
  }

  .contact-form__submit:hover {
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .contact-form {
      padding: 0 1.5rem 3rem;
    }
  }
/* END_SECTION:contact-form */

/* START_SECTION:course-list (INDEX:12) */
.course-list {
    padding: 4rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .course-list__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .course-list__heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem;
    color: {{ section.settings.heading_color }};
  }

  .course-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .course-list__item {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }

  .course-list__item::before {
    content: '•';
    color: {{ section.settings.bullet_color }};
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    padding-right: 0.5rem;
  }

  .course-name {
    font-weight: 600;
    color: {{ section.settings.course_name_color }};
  }

  .course-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
  }

  .course-link:hover .course-name {
    color: #FFB800;
    text-decoration: underline;
  }

  .course-translation {
    font-weight: 400;
    color: #666;
  }

  @media (max-width: 768px) {
    .course-list__grid {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }

    /* On desktop the 2-column grid fills row-major, so blocks are interleaved
       (odd = left column, even = right column). When it collapses to one column
       that raw order zig-zags. Reorder so the single column reads the full left
       column first, then the full right column. Same `order` value preserves
       source order within each group. */
    .course-list__item:nth-child(odd) {
      order: 0;
    }

    .course-list__item:nth-child(even) {
      order: 1;
    }

    .course-list__heading {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:course-list */

/* START_SECTION:custom-section (INDEX:13) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:15) */
.site-footer {
    background: linear-gradient(135deg, #5B6B9E 0%, #4A5578 100%);
    color: white;
  }

  .site-footer__top {
    padding: 3rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-footer__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .site-footer__columns {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 3rem;
  }

  .site-footer__column--logo {
    grid-column: 1;
  }

  .site-footer__logo {
    max-width: 180px;
    height: auto;
  }

  .site-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-logo-icon {
    font-size: 2rem;
  }

  .footer-logo-text {
    display: flex;
    flex-direction: column;
  }

  .footer-logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .footer-logo-tagline {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.2;
  }

  .site-footer__heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: white;
  }

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

  .site-footer__links li {
    margin-bottom: 0.75rem;
  }

  .site-footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
  }

  .site-footer__link:hover {
    color: white;
  }

  .site-footer__bottom {
    padding: 1.5rem 2rem;
  }

  .site-footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .site-footer__copyright {
    font-size: 0.875rem;
    opacity: 0.8;
  }

  .footer-language-btn {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.25rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .footer-language-btn:hover {
    opacity: 1;
  }

  .footer-language-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }

  .footer-language-form:hover {
    opacity: 1;
  }

  .footer-language-icon {
    flex-shrink: 0;
    pointer-events: none;
  }

  .footer-language-select {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0.25rem 1.25rem 0.25rem 0.25rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.15rem center;
  }

  .footer-language-select option {
    color: #333;
  }

  .footer-language-select:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
    border-radius: 2px;
  }

  .site-footer__legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
  }

  .site-footer__legal-link:hover {
    color: white;
  }

  .site-footer__social {
    display: flex;
    gap: 0.75rem;
  }

  .site-footer__social-link {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-footer__social-link:hover {
    opacity: 1;
  }

  @media (max-width: 1024px) {
    .site-footer__columns {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .site-footer__column--logo {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 768px) {
    .site-footer__top {
      padding: 2rem 1.5rem;
    }

    .site-footer__columns {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .site-footer__bottom {
      padding: 1.25rem 1.5rem;
    }

    .site-footer__bottom-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .site-footer__social {
      order: -1;
    }
  }

  @media (max-width: 480px) {
    .site-footer__columns {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:geo-guide-links (INDEX:16) */
.geo-links {
    padding: 2rem 2rem 3.5rem;
    background: {{ section.settings.background_color }};
  }

  .geo-links__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .geo-links__heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: {{ section.settings.heading_color }};
    margin: 0 0 0.75rem;
  }

  .geo-links__subtext {
    text-align: center;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 2.5rem;
  }

  .geo-links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .geo-links__group-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(91, 107, 158, 0.2);
  }

  .geo-links__group-title a {
    color: {{ section.settings.heading_color }};
    text-decoration: none;
  }

  .geo-links__group-title a:hover {
    text-decoration: underline;
  }

  .geo-links__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .geo-links__list li {
    margin-bottom: 0.55rem;
  }

  .geo-links__list a {
    color: #444;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.45;
    transition: color 0.2s ease;
  }

  .geo-links__list a:hover {
    color: {{ section.settings.heading_color }};
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .geo-links {
      padding: 2.5rem 1.5rem;
    }

    .geo-links__heading {
      font-size: 1.5rem;
    }

    .geo-links__grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
    }
  }
/* END_SECTION:geo-guide-links */

/* START_SECTION:geo-product-grid (INDEX:17) */
.geo-grid {
    padding: 1rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .geo-grid__container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .geo-grid__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #5b6b9e;
    margin: 0 0 0.75rem;
    text-align: center;
  }

  .geo-grid__intro {
    text-align: center;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 640px;
  }

  .geo-grid__intro p {
    margin: 0;
  }

  .geo-grid__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .geo-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .geo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(27, 39, 74, 0.12);
  }

  .geo-card__media {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #f5f5f5;
  }

  .geo-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .geo-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #b8312f;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
  }

  .geo-card__body {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
  }

  .geo-card__title {
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
  }

  .geo-card__price {
    margin: auto 0 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .geo-card__price-now {
    font-size: 1.15rem;
    font-weight: 700;
    color: #5b6b9e;
  }

  .geo-card__price-was {
    font-size: 0.9rem;
    color: #888;
  }

  .geo-grid__all {
    text-align: center;
    margin: 2rem 0 0;
  }

  .geo-grid__all a {
    color: #5b6b9e;
    font-weight: 600;
    text-decoration: underline;
  }

  @media (max-width: 900px) {
    .geo-grid__items {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .geo-grid {
      padding: 1rem 1.5rem 2.5rem;
    }

    .geo-grid__items {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .geo-grid__heading {
      font-size: 1.4rem;
    }
  }
/* END_SECTION:geo-product-grid */

/* START_SECTION:header (INDEX:18) */
.announcement-bar {
    padding: 0.75rem 2rem;
    text-align: center;
    font-size: 0.875rem;
  }

  .announcement-bar__content {
    max-width: 1400px;
    margin: 0 auto;
  }

  .announcement-bar__text {
    margin: 0;
    font-weight: 500;
  }

  .site-header {
    background: white;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .site-header__container {
    max-width: 1400px;
    margin: 0 auto;
    /* Extra right padding pulls the icon cluster in from the header edge. */
    padding: 1rem 2rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .site-header__logo {
    flex-shrink: 0;
    min-width: 0;
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    min-width: 0;
  }

  .logo-link img {
    max-height: 50px;
    width: auto;
    max-width: 100%;
  }

  .logo-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .logo-icon {
    font-size: 2rem;
  }

  .logo-text-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
  }

  .logo-tagline {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
  }

  .site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-menu__item {
    position: relative;
  }

  .nav-menu__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    /* Keep every item on a single line so the gaps between items read as
       even. Without this, longer labels wrap to two lines and the spacing
       looks ragged. */
    white-space: nowrap;
  }

  .nav-menu__link:hover,
  .nav-menu__link.active {
    color: #5B6B9E;
  }

  /* Tighten progressively rather than letting items wrap, so spacing stays
     even from the mobile breakpoint up to full desktop width. */
  @media (max-width: 1400px) {
    .nav-menu {
      gap: 1.15rem;
    }

    .nav-menu__link {
      font-size: 0.875rem;
    }
  }

  @media (max-width: 1200px) {
    .nav-menu {
      gap: 0.85rem;
    }

    .nav-menu__link {
      font-size: 0.8125rem;
    }
  }

  /* Expand/collapse caret for submenu parents. Hidden on desktop, where the
     submenu opens on hover; shown only inside the mobile drawer below. */
  .nav-menu__caret {
    display: none;
    width: 0;
    height: 0;
    margin-left: 0.4rem;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
  }

  .nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    z-index: 10;
  }

  .nav-menu__item:hover .nav-submenu {
    display: block;
  }

  .nav-submenu__item {
    padding: 0;
  }

  .nav-submenu__link {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
    transition: background 0.2s ease;
  }

  .nav-submenu__link:hover {
    background: #F5F5F5;
    color: #5B6B9E;
  }

  .site-header__icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .header-icon {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    text-decoration: none;
    position: relative;
  }

  .header-icon:hover {
    color: #5B6B9E;
  }

  .header-icon svg {
    width: 24px;
    height: 24px;
  }

  .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF6B6B;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
  }

  .mobile-menu-toggle {
    display: none;
  }

  @media (max-width: 1024px) {
    .site-header__nav {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
    }

    .site-header__nav.active {
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border-top: 1px solid #E5E5E5;
      padding: 1rem 0;
      z-index: 50;
    }

    .nav-menu {
      flex-direction: column;
      gap: 0;
    }

    .nav-menu__item {
      width: 100%;
    }

    .nav-menu__link {
      padding: 1rem 2rem;
      /* Push the caret to the far right of the full-width row. */
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-menu__caret {
      display: inline-block;
      flex-shrink: 0;
    }

    .nav-menu__item.active .nav-menu__caret {
      transform: rotate(180deg);
    }

    .nav-submenu {
      position: static;
      border: none;
      box-shadow: none;
      background: #F5F5F5;
      display: none;
    }

    /* On touch devices :hover sticks after a tap, so the global hover rule
       would keep a submenu open even after we remove .active — it never
       collapses. In the drawer, visibility is driven solely by .active. */
    .nav-menu__item:hover .nav-submenu {
      display: none;
    }

    .nav-menu__item.active .nav-submenu {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .site-header__container {
      padding: 1rem 2rem 1rem 1.5rem;
      gap: 1rem;
    }

    .logo-link img {
      max-height: 64px;
    }

    .announcement-bar {
      padding: 0.75rem 1.5rem;
      font-size: 0.8125rem;
    }

    .logo-name {
      font-size: 1rem;
    }

    .logo-tagline {
      font-size: 0.65rem;
    }

    .logo-icon {
      font-size: 1.5rem;
    }

    .logo-text {
      gap: 0.5rem;
    }

    .site-header__icons {
      gap: 0.5rem;
    }

    .header-icon {
      padding: 0.25rem;
    }

    .header-icon svg {
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 480px) {
    .site-header__container {
      gap: 0.5rem;
    }

    .logo-link img {
      max-width: 240px;
    }

    .logo-name {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .logo-tagline {
      display: none;
    }

    .site-header__icons {
      gap: 0.25rem;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:19) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-carousel (INDEX:20) */
.hero-carousel {
    position: relative;
    background: #f4f0e7;
    color: #18233a;
    overflow: hidden;
    border-radius: var(--hero-border-radius);
    margin: var(--hero-section-margin) auto;
    max-width: var(--hero-max-width);
  }

  .hero-carousel__wrapper {
    position: relative;
    min-height: 400px;
  }

  .hero-slide {
    display: none;
    padding: clamp(2.5rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4rem);
  }

  .hero-slide.active {
    display: block;
  }

  .hero-slide__content {
    display: grid;
    /* minmax(0, 1fr) lets each column shrink below its content's intrinsic
       width, preventing long text from creating horizontal overflow. */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-slide__title {
    max-width: 11ch;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 5vw, 4.75rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin: 0 0 1.35rem;
  }

  .hero-slide__eyebrow,
  .hero-method__eyebrow {
    margin: 0 0 1rem;
    color: #9a4a2f;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .hero-slide__description {
    max-width: 36rem;
    color: #596270;
    font-size: 1.0625rem;
    line-height: 1.65;
    margin: 0 0 1.75rem;
  }

  .hero-slide__description--mobile {
    display: none;
  }

  .hero-slide__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }

  .hero-slide__buttons--single {
    width: 100%;
  }

  .hero-slide__buttons--single .hero-slide__button {
    width: 100%;
    text-align: center;
  }

  .hero-slide__button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #f1b431;
    color: #172033;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background 0.3s ease;
  }

  .hero-slide__button:hover {
    background: #dfa223;
    color: #172033;
  }

  .hero-slide__button--secondary {
    background: transparent;
    color: #173354;
    border: 2px solid rgba(23, 51, 84, 0.55);
    /* Match the solid button's height despite the added border. */
    padding: calc(0.875rem - 2px) calc(2rem - 2px);
  }

  .hero-slide__button--secondary:hover {
    background: rgba(23, 51, 84, 0.08);
    color: #173354;
  }

  .hero-slide__secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.875rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: underline;
    vertical-align: middle;
    transition: opacity 0.3s ease;
  }

  .hero-slide__secondary-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
    background: #FFB800;
    border-radius: 50%;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .hero-slide__secondary-link:hover {
    color: #fff;
    opacity: 0.8;
  }

  .hero-slide__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .rating-stars {
    display: flex;
    gap: 0.25rem;
  }

  .star {
    color: rgba(255, 215, 0, 0.3);
    font-size: 1.5rem;
  }

  .star.filled {
    color: #FFD700;
  }

  .star.half {
    position: relative;
    color: rgba(255, 215, 0, 0.3);
  }

  .star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #FFD700;
  }

  .rating-text-hero {
    font-size: 0.875rem;
    color: #414b59;
    opacity: 1;
  }

  .hero-method {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: #173354;
    color: #fff;
    box-shadow: 18px 18px 0 #ded5c4;
  }

  .hero-method__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-method__eyebrow {
    color: #f1b431;
  }

  .hero-method__title {
    max-width: 11ch;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.08;
  }

  .hero-method__seal {
    display: grid;
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    place-content: center;
    border: 1px solid #f1b431;
    border-radius: 50%;
    color: #f1b431;
    text-align: center;
  }

  .hero-method__seal span {
    font-size: 0.625rem;
    letter-spacing: 0.16em;
  }

  .hero-method__seal strong {
    display: block;
    margin-top: 0.15rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
  }

  .hero-method__steps {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .hero-method__steps li {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.875rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-method__number {
    display: grid;
    width: 1.75rem;
    height: 1.75rem;
    place-items: center;
    border-radius: 50%;
    background: #f1b431;
    color: #172033;
    font-size: 0.75rem;
    font-weight: 800;
  }

  .hero-method__steps strong,
  .hero-method__steps small {
    display: block;
  }

  .hero-method__steps strong {
    font-size: 0.95rem;
  }

  .hero-method__steps small {
    margin-top: 0.2rem;
    color: #c5cfda;
    font-size: 0.75rem;
  }

  .hero-method__note {
    margin: 1.25rem 0 0;
    color: #d9e0e8;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .hero-slide__image {
    position: relative;
    min-height: 300px;
    width: 100%;
    max-width: 100%;
    /* Preserve the current live desktop presentation. Mobile returns to the
       source images' natural 16:9 ratio below. */
    aspect-ratio: 4 / 3;
  }

  /* Every image fills the fixed box and stacks for the cross-fade, so none of
     them dictate the container height. object-fit: cover crops any off-ratio
     image instead of resizing the box. */
  .hero-slide__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .hero-slide__img.active {
    opacity: 1;
  }

  .hero-slide__placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-slide__placeholder svg {
    width: 100%;
    height: auto;
    max-width: 400px;
  }


  @media (max-width: 768px) {
    .hero-carousel {
      margin: 0.625rem auto;
    }

    .hero-slide__content {
      grid-template-columns: minmax(0, 1fr);
      gap: 1.25rem;
    }

    .hero-slide__text,
    .hero-slide__image {
      min-width: 0;
    }

    .hero-slide__title {
      font-size: 2.6rem;
      line-height: 1;
      margin-bottom: 0.75rem;
    }

    .hero-slide {
      padding: 2rem 1.25rem 2.5rem;
    }

    .hero-slide__description {
      line-height: 1.5;
      margin-bottom: 1.25rem;
    }

    .hero-slide__description--desktop {
      display: none;
    }

    .hero-slide__description--mobile {
      display: block;
    }

    .hero-slide__buttons {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .hero-slide__buttons--single {
      grid-template-columns: minmax(0, 1fr);
    }

    .hero-slide__button {
      width: 100%;
      padding: 0.75rem 0.5rem;
      text-align: center;
      white-space: nowrap;
    }

    .hero-slide__rating {
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .rating-stars {
      gap: 0.125rem;
      flex-shrink: 0;
    }

    .star {
      font-size: 1.125rem;
    }

    .rating-text-hero {
      font-size: 0.8125rem;
      line-height: 1.3;
    }

    .hero-slide__image {
      aspect-ratio: 16 / 9;
      min-height: 0;
    }

    .hero-slide__placeholder {
      min-height: 0;
    }

    .hero-method {
      margin-right: 10px;
      box-shadow: 10px 10px 0 #ded5c4;
    }

    .hero-slide__secondary-link {
      display: block;
      margin-left: 0;
      margin-top: 1rem;
    }
  }
/* END_SECTION:hero-carousel */

/* START_SECTION:main-cart (INDEX:21) */
.cart-page {
    padding: 3rem 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .cart-page__header {
    margin-bottom: 2rem;
  }

  .cart-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #333;
  }

  .cart-page__empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .cart-page__empty-title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }

  .cart-page__empty-text {
    font-size: 1rem;
    color: #666;
    margin: 0 0 2rem;
  }

  .cart-page__continue-shopping {
    display: inline-block;
    padding: 1rem 2rem;
    background: #FFB800;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .cart-page__continue-shopping:hover {
    background: #FFA500;
  }

  .cart-page__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
  }

  .cart-items {
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
    align-items: center;
  }

  .cart-item:last-child {
    border-bottom: none;
  }

  .cart-item__image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #F5F5F5;
  }

  .cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item__details {
    flex: 1;
  }

  .cart-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .cart-item__title a {
    color: #333;
    text-decoration: none;
  }

  .cart-item__title a:hover {
    color: #5B6B9E;
  }

  .cart-item__price {
    font-size: 1rem;
    color: #666;
    margin: 0 0 1rem;
  }

  .cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .cart-item__quantity-label {
    font-size: 0.875rem;
    color: #666;
    margin-right: 0.5rem;
  }

  .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
  }

  .quantity-button {
    background: white;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    transition: background 0.2s ease;
  }

  .quantity-button:hover {
    background: #F5F5F5;
  }

  .quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    padding: 0.5rem;
    font-size: 1rem;
  }

  .cart-item__remove {
    background: none;
    border: none;
    color: #FF6B6B;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-top: 0.5rem;
  }

  .cart-item__remove:hover {
    color: #FF4444;
  }

  .cart-item__subtotal {
    text-align: right;
  }

  .cart-item__subtotal-label {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 0.25rem;
  }

  .cart-item__subtotal-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0;
  }

  .cart-summary {
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 2rem;
    position: sticky;
    top: 2rem;
  }

  .cart-summary__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #333;
  }

  .cart-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .cart-summary__label {
    color: #666;
  }

  .cart-summary__value {
    font-weight: 600;
    color: #333;
  }

  .cart-summary__total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #E5E5E5;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .cart-summary__checkout {
    width: 100%;
    padding: 1rem;
    background: #FFB800;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
  }

  .cart-summary__checkout:hover {
    background: #FFA500;
  }

  .cart-summary__note {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
  }

  .cart-summary__hear {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E5E5;
  }

  .cart-summary__hear-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
  }

  .cart-summary__hear-select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    color: #333;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: white;
    cursor: pointer;
  }

  .cart-summary__hear-select:focus {
    outline: none;
    border-color: #FFB800;
  }

  @media (max-width: 968px) {
    .cart-page__content {
      grid-template-columns: 1fr;
    }

    .cart-summary {
      position: static;
    }
  }

  @media (max-width: 768px) {
    .cart-item {
      grid-template-columns: 80px 1fr;
      gap: 1rem;
    }

    .cart-item__image {
      width: 80px;
      height: 80px;
    }

    .cart-item__subtotal {
      grid-column: 2;
      text-align: left;
      margin-top: 1rem;
    }

    .cart-page__title {
      font-size: 2rem;
    }
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection (INDEX:22) */
.collection-page {
    padding: 3rem 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .collection-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .product-card__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
  }

  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-card__image img {
    transform: scale(1.05);
  }

  .product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .product-card__content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
    line-height: 1.4;
  }

  .product-card__description {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.75rem;
  }

  .product-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .product-card__price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
  }

  .product-card__price-compare {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
  }

  .product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #FFB800;
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: auto;
  }

  .product-card:hover .product-card__cta {
    background: #FFA500;
  }

  .collection-empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .collection-empty__title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }

  .collection-empty__text {
    font-size: 1rem;
    color: #666;
  }

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

  @media (max-width: 768px) {
    .collection-products {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .collection-page {
      padding: 1.5rem 1rem;
    }
  }

  @media (max-width: 480px) {
    .collection-products {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:main-collection */

/* START_SECTION:main-product (INDEX:23) */
.product {
    padding: 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .product__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .product__media-wrapper {
    position: sticky;
    top: 2rem;
  }

  .product__media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .product__media img {
    width: 100%;
    height: auto;
    display: block;
  }

  .product__info {
    padding: 1rem 0;
  }

  .product__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }

  .product__price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .product__price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
  }

  .product__price-compare {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
  }

  .product__price-badge {
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .product__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
  }

  .product__form {
    margin-bottom: 2rem;
  }

  .product__add-to-cart {
    width: 100%;
    padding: 1rem 2rem;
    background: #FFB800;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .product__add-to-cart:hover {
    background: #FFA500;
  }

  @media (max-width: 768px) {
    .product {
      padding: 1rem;
    }

    .product__grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .product__media-wrapper {
      position: static;
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
    }

    .product__info {
      padding: 0;
    }

    .product__title {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .product__price {
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

    .product__price-current {
      font-size: 1.75rem;
    }

    .product__form {
      margin-bottom: 1.5rem;
    }
  }
/* END_SECTION:main-product */

/* START_SECTION:main-search (INDEX:24) */
.search-page {
    padding: 1.5rem 2rem 3rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .search-header__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
  }

  .search-header__form {
    flex-shrink: 0;
  }

  .search-header__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .search-header__input {
    width: 280px;
    padding: 0.75rem 2.75rem 0.75rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .search-header__input:focus {
    outline: none;
    border-color: #5B6B9E;
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.1);
  }

  .search-header__input::placeholder {
    color: #999;
  }

  .search-header__button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }

  .search-header__button:hover {
    color: #5B6B9E;
  }

  .search-results-info {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }

  .search-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .product-card__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
  }

  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-card__image img {
    transform: scale(1.05);
  }

  .product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .product-card__content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
    line-height: 1.4;
  }

  .product-card__description {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.75rem;
  }

  .product-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .product-card__price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
  }

  .product-card__price-compare {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
  }

  .product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #FFB800;
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: auto;
  }

  .product-card:hover .product-card__cta {
    background: #FFA500;
  }

  .search-empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .search-empty__title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }

  .search-empty__text {
    font-size: 1rem;
    color: #666;
  }

  .search-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .search-pagination a,
  .search-pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
  }

  .search-pagination a:hover {
    border-color: #5B6B9E;
    color: #5B6B9E;
  }

  .search-pagination span.current {
    background: #5B6B9E;
    border-color: #5B6B9E;
    color: white;
  }

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

  @media (max-width: 768px) {
    .search-page {
      padding: 1rem 1.5rem 2rem;
    }

    .search-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .search-header__title {
      font-size: 1.5rem;
    }

    .search-header__form {
      width: 100%;
    }

    .search-header__input {
      width: 100%;
    }

    .search-products {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  @media (max-width: 480px) {
    .search-products {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:main-search */

/* START_SECTION:package-upsell (INDEX:25) */
.package-upsell {
    padding: 3rem 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .package-upsell__container {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2.5rem;
  }

  .package-upsell__title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .package-upsell__subtitle {
    text-align: center;
    color: #666;
    margin: 0 0 2rem;
    font-size: 1rem;
  }

  .package-upsell__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .package-card--gold {
    border-color: #FFB800;
  }

  .package-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #C0C0C0;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
  }

  .package-card__badge--gold {
    background: #FFB800;
    color: #000;
  }

  .package-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .package-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #F5F5F5;
  }

  .package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .package-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .package-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #333;
    line-height: 1.3;
  }

  .package-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .package-card__price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
  }

  .package-card__price-compare {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
  }

  .package-card__savings {
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
  }

  .package-card__cta {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #FFB800;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto;
  }

  .package-card__cta:hover {
    background: #FFA500;
  }

  @media (max-width: 768px) {
    .package-upsell {
      padding: 2rem 1.5rem;
    }

    .package-upsell__container {
      padding: 1.5rem;
    }

    .package-upsell__grid {
      grid-template-columns: 1fr;
    }

    .package-upsell__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:package-upsell */

/* START_SECTION:page-hero (INDEX:26) */
.page-hero {
    padding: 4rem 2rem;
    border-radius: {{ section.settings.border_radius }}px;
    margin: {{ section.settings.section_margin }}px auto;
    max-width: {{ section.settings.max_width }}px;
  }

  .page-hero__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
  }

  .page-hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: white;
  }

  .page-hero__description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
  }

  .page-hero__description p {
    margin: 0 0 1rem;
  }

  .page-hero__description p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 768px) {
    .page-hero {
      padding: 3rem 1.5rem;
      margin: {{ section.settings.section_margin | divided_by: 2 }}px auto;
    }

    .page-hero__title {
      font-size: 2rem;
    }

    .page-hero__description {
      font-size: 0.9375rem;
    }
  }
/* END_SECTION:page-hero */

/* START_SECTION:page (INDEX:27) */
.page-content {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-content__container {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-content__promo {
    margin: 0 0 2rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(91, 107, 158, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(91, 107, 158, 0.08), rgba(91, 107, 158, 0.03));
    box-shadow: 0 10px 30px rgba(27, 39, 74, 0.06);
  }

  .page-content__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b8312f;
  }

  .page-content__promo-title {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: #5b6b9e;
  }

  .page-content__promo-copy {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
  }

  .page-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 2rem;
    color: #5b6b9e;
  }

  .page-content__body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
  }

  .page-content__body h1 {
    display: none;
  }

  .page-content__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5b6b9e;
    margin: 2.5rem 0 1rem;
  }

  .page-content__body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 0.75rem;
  }

  .page-content__body p {
    margin: 0 0 1.25rem;
  }

  .page-content__body p:last-child {
    margin-bottom: 0;
  }

  .page-content__body ul,
  .page-content__body ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
  }

  .page-content__body li {
    margin-bottom: 0.5rem;
  }

  .page-content__body a {
    color: #5b6b9e;
    text-decoration: underline;
  }

  .page-content__body a:hover {
    color: #4a5578;
  }

  .page-content__body strong {
    color: #333;
  }

  @media (max-width: 768px) {
    .page-content {
      padding: 3rem 1.5rem;
    }

    .page-content__promo {
      padding: 1.25rem 1.25rem;
    }

    .page-content__promo-title {
      font-size: 1.4rem;
    }

    .page-content__promo-copy {
      font-size: 1rem;
    }

    .page-content__title {
      font-size: 1.75rem;
    }

    .page-content__body {
      font-size: 1rem;
    }

    .page-content__body h2 {
      font-size: 1.25rem;
    }
  }
/* END_SECTION:page */

/* START_SECTION:practice-test-list (INDEX:29) */
.ptl {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .ptl__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .ptl-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }

  .ptl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }

  .ptl-card__img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #3d4f7c;
  }

  .ptl-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .ptl-card:hover .ptl-card__img img {
    transform: scale(1.05);
  }

  .ptl-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.875rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    color: #fff;
  }

  .ptl-card__trade {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .ptl-card__type {
    font-size: 0.8rem;
    opacity: 0.88;
  }

  .ptl-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .ptl-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.375rem;
    color: #222;
    line-height: 1.35;
  }

  .ptl-card__meta {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.75rem;
  }

  .ptl-card__free {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.75rem;
  }

  .ptl-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    background: #FFB800;
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: background 0.2s;
    margin-top: auto;
  }

  .ptl-card:hover .ptl-card__cta {
    background: #FFA500;
  }

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

  @media (max-width: 768px) {
    .ptl__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .ptl { padding: 1.5rem 1rem; }
  }

  @media (max-width: 480px) {
    .ptl__grid { grid-template-columns: 1fr; }
  }

  .ptl__search-wrap {
    max-width: 420px;
    margin: 0 auto 2rem;
    position: relative;
  }

  .ptl__search {
    width: 100%;
    font: inherit;
    font-size: 1rem;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid #d8dae2;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
  }

  .ptl__search:focus {
    outline: none;
    border-color: #5b6b9e;
  }

  .ptl__search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 1.1rem;
    color: #9ca3af;
    pointer-events: none;
  }

  .ptl__empty {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #777;
    font-size: 1rem;
  }
/* END_SECTION:practice-test-list */

/* START_SECTION:practice-test-picker (INDEX:30) */
.ptq-picker { padding: 3.5rem 1.25rem; background: var(--ptq-pk-bg, #eef3f8); scroll-margin-top: 110px; }
  .ptq-picker__inner { max-width: 640px; margin: 0 auto; text-align: center; }
  .ptq-picker__badge {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 0.9rem;
    background: rgba(91, 107, 158, 0.12); color: var(--ptq-pk-brand, #5b6b9e);
  }
  .ptq-picker__title { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.12; color: #173354; margin: 0 0 0.6rem; }
  .ptq-picker__sub { font-size: 1.02rem; line-height: 1.6; color: #5f6573; margin: 0 auto 1.6rem; max-width: 30em; }
  .ptq-picker__controls { display: flex; gap: 0.6rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
  .ptq-picker__select {
    flex: 1; min-width: 200px; font: inherit; font-size: 1rem; padding: 0.8rem 0.9rem;
    border: 1px solid #cbd4df; border-radius: 6px; background: #fff; text-align: left;
  }
  .ptq-picker__select:focus-visible { outline: 2px solid var(--ptq-pk-brand, #5b6b9e); outline-offset: 1px; }
  .ptq-picker__btn {
    font: inherit; font-weight: 600; font-size: 1rem; white-space: nowrap;
    padding: 0.8rem 1.4rem; border: 1px solid transparent; border-radius: 6px; cursor: pointer;
    background: var(--ptq-pk-brand, #5b6b9e); color: #fff; transition: filter 0.15s ease;
  }
  .ptq-picker__btn:hover { filter: brightness(0.93); }
  .ptq-picker__popular { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; justify-content: center; }
  .ptq-picker__popular-label { font-size: 0.85rem; color: #8a8f9c; }
  .ptq-picker__chip {
    font-size: 0.88rem; text-decoration: none; color: #5f6573;
    border: 1px solid #d8dae2; border-radius: 20px; padding: 0.35rem 0.85rem; transition: border-color 0.15s ease, color 0.15s ease;
  }
  .ptq-picker__chip:hover { border-color: var(--ptq-pk-brand, #5b6b9e); color: var(--ptq-pk-brand, #5b6b9e); }
  .ptq-picker__chip--all { font-weight: 600; color: var(--ptq-pk-brand, #5b6b9e); }
  .ptq-picker__all-row { margin-top: 1rem; text-align: center; }
  .ptq-picker__all-link { font-size: 0.9rem; font-weight: 600; color: var(--ptq-pk-brand, #5b6b9e); text-decoration: none; }
  .ptq-picker__all-link:hover { text-decoration: underline; }

  @media (min-width: 769px) {
    .ptq-picker { padding: 2rem 1.25rem; }
  }

  @media (max-width: 768px) {
    .ptq-picker {
      padding: 3rem 1rem;
    }

    .ptq-picker__inner {
      max-width: 34rem;
    }

    .ptq-picker__controls {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.75rem;
      max-width: 100%;
    }

    .ptq-picker__select,
    .ptq-picker__btn {
      width: 100%;
      min-width: 0;
    }

    .ptq-picker__btn {
      min-height: 3.25rem;
    }

    .ptq-picker__popular {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.6rem;
      margin-top: 1.5rem;
    }

    .ptq-picker__popular-label {
      grid-column: 1 / -1;
      text-align: left;
    }

    .ptq-picker__chip {
      display: flex;
      min-height: 2.75rem;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 0.65rem;
      border-radius: 6px;
      background: #fff;
      line-height: 1.25;
      text-align: center;
    }

    .ptq-picker__chip:last-child {
      grid-column: 1 / -1;
      width: calc(50% - 0.3rem);
      justify-self: center;
    }

    .ptq-picker__all-row {
      margin-top: 1.4rem;
    }
  }

  @media (max-width: 359px) {
    .ptq-picker__popular {
      grid-template-columns: minmax(0, 1fr);
    }

    .ptq-picker__popular-label,
    .ptq-picker__chip:last-child {
      grid-column: auto;
      width: 100%;
    }
  }

  /* Modal */
  .ptq-modal-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(15, 17, 25, 0.55); backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center; padding: 1rem;
    animation: ptq-fade-in 0.25s ease;
  }
  .ptq-modal-overlay[hidden] { display: none; }
  @keyframes ptq-fade-in { from { opacity: 0; } to { opacity: 1; } }
  .ptq-modal {
    background: #fff; border-radius: 20px;
    padding: 2.5rem 2rem 2rem; max-width: 480px; width: 100%;
    position: relative; text-align: center;
    animation: ptq-slide-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  }
  @keyframes ptq-slide-up { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .ptq-modal__close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; font-size: 1.4rem; line-height: 1;
    cursor: pointer; color: #9ca3af; padding: 0.25rem 0.5rem; border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .ptq-modal__close:hover { color: #374151; background: #f3f4f6; }
  .ptq-modal__title { font-size: 1.55rem; font-weight: 700; line-height: 1.2; margin: 0.3rem 0 0.6rem; }
  .ptq-modal__sub { font-size: 0.97rem; line-height: 1.6; color: #5f6573; margin: 0 0 1.5rem; }
  .ptq-modal__controls { max-width: 100%; justify-content: center; }
  .ptq-modal__skip {
    display: block; margin-top: 1rem; background: none; border: none;
    font: inherit; font-size: 0.88rem; color: #9ca3af; cursor: pointer;
    text-decoration: underline; padding: 0;
  }
  .ptq-modal__skip:hover { color: #6b7280; }
/* END_SECTION:practice-test-picker */

/* START_SECTION:pricing-cards (INDEX:33) */
.pricing-cards {
    padding: 4rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .pricing-cards__container {
    scroll-margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .pricing-card {
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .pricing-card.featured {
    border-color: #FFB800;
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.2);
  }

  .pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB800;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .pricing-card__header {
    margin-bottom: 1.5rem;
  }

  .pricing-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .pricing-card__subtitle {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
  }

  .pricing-card__price {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
  }

  .pricing-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
  }

  .pricing-card__savings {
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .pricing-card__description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .pricing-card__button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid #333;
    color: #333;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
  }

  .pricing-card__button:hover {
    background: #333;
    color: white;
  }

  .pricing-card__button.featured {
    background: #FFB800;
    border-color: #FFB800;
    color: #000;
  }

  .pricing-card__button.featured:hover {
    background: #FFA500;
    border-color: #FFA500;
  }

  .pricing-card__features {
    flex-grow: 1;
  }

  .pricing-card__features-title {
    font-weight: 600;
    margin: 0 0 1rem;
    color: #333;
  }

  .pricing-card__features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pricing-card__features-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .feature-icon {
    flex-shrink: 0;
    font-weight: 600;
    color: #5B6B9E;
    min-width: 30px;
  }

  .feature-text {
    flex: 1;
    line-height: 1.5;
  }

  .pricing-card__footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E5E5;
    text-align: center;
  }

  .pricing-card__details-link {
    color: #333;
    text-decoration: underline;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .pricing-card__details-link:hover {
    color: #FFB800;
  }

  @media (max-width: 768px) {
    .pricing-cards {
      padding: 1.5rem 1rem;
    }

    .pricing-cards__container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }

    .pricing-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      grid-template-areas:
        "header price"
        "button button";
      column-gap: 1rem;
      row-gap: 0.75rem;
      padding: 1rem;
    }

    .pricing-card:hover {
      transform: none;
    }

    .pricing-card.featured {
      margin-top: 0.375rem;
    }

    .pricing-card__header {
      grid-area: header;
      align-self: start;
      margin: 0;
    }

    .pricing-card__title {
      margin-bottom: 0.25rem;
      font-size: 1.25rem;
    }

    .pricing-card__subtitle {
      display: -webkit-box;
      overflow: hidden;
      font-size: 0.8125rem;
      line-height: 1.35;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .pricing-card__price {
      grid-area: price;
      display: grid;
      grid-template-columns: auto auto;
      align-items: start;
      justify-content: end;
      gap: 0.125rem;
      margin: 0;
    }

    .pricing-card__currency {
      margin-top: 0.25rem;
      font-size: 1rem;
    }

    .pricing-card__amount {
      font-size: 2.25rem;
    }

    .pricing-card__savings {
      grid-column: 1 / -1;
      justify-self: end;
      margin-top: 0.125rem;
      padding: 0.125rem 0.375rem;
      font-size: 0.6875rem;
      white-space: nowrap;
    }

    .pricing-card__features {
      display: none;
    }

    .pricing-card__button {
      grid-area: button;
      margin: 0;
      padding: 0.75rem;
    }

    .pricing-card__badge {
      top: -0.625rem;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
    }
  }
/* END_SECTION:pricing-cards */

/* START_SECTION:related-articles (INDEX:35) */
.related-articles {
    padding: 0 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .related-articles__container {
    border-top: 1px solid #e5e5e5;
    padding-top: 2.5rem;
  }

  .related-articles__title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .related-articles__subtitle {
    text-align: center;
    color: #666;
    margin: 0 0 2rem;
    font-size: 1rem;
  }

  .related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .related-articles__grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .related-articles__grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-articles__grid--1 {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
  }

  .related-article {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .related-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .related-article__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f5;
  }

  .related-article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .related-article__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .related-article__title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.5rem;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .related-article__excerpt {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #666;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .related-article__readmore {
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a5490;
  }

  .related-articles__all {
    text-align: center;
    margin-top: 1.75rem;
  }

  .related-articles__all a {
    font-weight: 600;
    color: #1a5490;
    text-decoration: none;
  }

  .related-articles__all a:hover {
    text-decoration: underline;
  }

  @media (max-width: 900px) {
    .related-articles__grid,
    .related-articles__grid--4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .related-articles {
      padding: 0 1.5rem 2rem;
    }

    .related-articles__grid,
    .related-articles__grid--4,
    .related-articles__grid--2,
    .related-articles__grid--1 {
      grid-template-columns: 1fr;
    }

    .related-articles__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:related-articles */

/* START_SECTION:search-bar (INDEX:36) */
.search-bar-section {
    padding: 0 2rem 1.5rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .search-bar-section__container {
    max-width: 300px;
    margin: 0 0 0 auto;
  }

  .search-bar__form {
    width: 100%;
  }

  .search-bar__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .search-bar__input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .search-bar__input:focus {
    outline: none;
    border-color: #5B6B9E;
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.1);
  }

  .search-bar__input::placeholder {
    color: #999;
  }

  .search-bar__button {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }

  .search-bar__button:hover {
    color: #5B6B9E;
  }

  .search-bar__button svg {
    width: 20px;
    height: 20px;
  }

  @media (max-width: 768px) {
    .search-bar-section {
      padding: 0 1.5rem 1rem;
    }

    .search-bar-section__container {
      max-width: 100%;
    }

    .search-bar__input {
      padding: 0.75rem 2.75rem 0.75rem 1rem;
      font-size: 0.9375rem;
    }
  }
/* END_SECTION:search-bar */

/* START_SECTION:search (INDEX:37) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:stats-banner (INDEX:38) */
.stats-banner {
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
    background: var(--stats-background);
    max-width: var(--stats-max-width);
    margin: 0 auto;
    border-top: 1px solid #ded8cc;
    border-bottom: 1px solid #ded8cc;
  }

  .stats-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 4rem);
    flex-wrap: wrap;
  }

  .stats-banner__heading {
    flex: 1;
    min-width: 250px;
  }

  .stats-banner__title {
    max-width: 17ch;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.5rem;
  }

  .stats-banner__subtitle {
    max-width: 30ch;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #626873;
  }

  .stats-banner__stats {
    display: flex;
    gap: clamp(1.75rem, 3vw, 3rem);
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 9rem;
  }

  .stat-item__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
  }

  .stat-item__link:hover .stat-item__value,
  .stat-item__link:hover .stat-item__label {
    color: #b8312f;
  }

  .stat-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stats-icon-color);
  }

  .stat-item__icon svg {
    width: 100%;
    height: 100%;
  }

  .stat-item__icon img {
    width: 100%;
    height: auto;
  }

  /* An iconless stat is its own flex item here, so the empty box would just be
     dead space. The mobile grid below puts it back as a column placeholder. */
  .stat-item__icon--empty {
    display: none;
  }

  .stat-item__value {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--stats-value-color);
    line-height: 1;
  }

  .stat-item__label {
    font-size: 0.875rem;
    color: #626873;
    margin-top: 0.25rem;
  }

  .stats-banner__badge {
    flex-shrink: 0;
  }

  .stats-banner__badge img {
    width: 100px;
    height: auto;
  }

  @media (max-width: 768px) {
    .stats-banner__content {
      flex-direction: column;
      text-align: center;
    }

    /* Lay the stats out as a 2-column grid — one shared column for all icons,
       one for all text — and center the whole block. This keeps every icon on a
       common vertical axis and every value/label left-aligned beside it. */
    .stats-banner__stats {
      display: grid;
      grid-template-columns: auto auto;
      justify-content: center;
      align-items: center;
      column-gap: 1rem;
      row-gap: 2rem;
      width: 100%;
    }

    .stat-item {
      display: contents;
    }

    .stat-item__link {
      display: contents;
    }

    .stat-item__icon {
      justify-self: center;
    }

    .stat-item__icon--empty {
      display: block;
    }

    .stat-item__content {
      text-align: left;
    }

    .stats-banner__heading {
      text-align: center;
    }
  }
/* END_SECTION:stats-banner */

/* START_SECTION:testimonials (INDEX:39) */
.testimonials {
    padding: 4rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
    text-align: center;
  }

  .testimonials__heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 3rem;
    color: #333;
  }

  .testimonials__slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
  }

  .testimonials__track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-card__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

  .testimonial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .testimonial-card__title {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 1rem;
  }

  .testimonial-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  .testimonials__controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .testimonials__nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #E5E5E5;
    background: white;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .testimonials__nav:hover {
    background: #333;
    color: white;
    border-color: #333;
  }

  .testimonials__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
  }

  .rating-stars {
    display: flex;
    gap: 0.5rem;
  }

  .star {
    font-size: 2rem;
    color: #E5E5E5;
  }

  .star.filled {
    color: #FFD700;
  }

  .star.half {
    position: relative;
    color: #E5E5E5;
  }

  .star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #FFD700;
  }

  .rating-text {
    font-size: 1rem;
    color: #333;
    margin: 0;
  }

  .rating-text strong {
    font-size: 1.5rem;
    color: #333;
  }

  @media (max-width: 1024px) {
    .testimonial-card {
      flex: 0 0 calc(50% - 1rem);
    }
  }

  @media (max-width: 768px) {
    .testimonial-card {
      flex: 0 0 100%;
      min-width: auto;
    }

    .testimonials__track {
      flex-direction: column;
    }
  }
/* END_SECTION:testimonials */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:40) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:41) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:47) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */