.public-home {
    --home-green: #14583a;
    --home-green-dark: #0c3f2a;
    --home-green-soft: #edf5ed;
    --home-amber: #ffb800;
    --home-orange: #f48a18;
    --home-paper: #fffdf9;
    --home-ink: #17201b;
    --home-muted: #5f675f;
    --home-line: #e7dfd3;
    background: #f7f4ee;
    color: var(--home-ink);
}

.public-home .yts-home,
.public-home .yts-home * {
    box-sizing: border-box;
}

.public-home .yts-home {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    background: var(--home-paper);
    font-family: Arial, sans-serif;
}

.public-home .yts-home h1,
.public-home .yts-home h2,
.public-home .yts-home h3,
.public-home .yts-home p,
.public-home .yts-home figure,
.public-home .yts-home ul {
    margin-top: 0;
}

.public-home .yts-home h1,
.public-home .yts-home h2,
.public-home .yts-home h3 {
    color: var(--home-green-dark);
}

.public-home .yts-home__hero {
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(480px, 1.12fr);
    min-height: 450px;
    border-bottom: 1px solid var(--home-line);
    background:
        radial-gradient(circle at 34% 10%, rgba(255, 184, 0, 0.08), transparent 26%),
        linear-gradient(100deg, #fffdfa 0%, #fbf6ed 44%, #f0eadf 44%);
}

.public-home .yts-home__hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(48px, 6vw, 96px) clamp(32px, 6vw, 108px);
}

.public-home .yts-home__eyebrow,
.public-home .yts-home__section-heading > span,
.public-home .yts-home__final-cta > div > span {
    color: #9a6500;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.public-home .yts-home__hero h1 {
    max-width: 620px;
    margin: 12px 0 16px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.public-home .yts-home__hero-copy > p {
    max-width: 600px;
    margin-bottom: 26px;
    color: #364039;
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.45;
}

.public-home .yts-home__hero-actions,
.public-home .yts-home__final-actions,
.public-home .yts-home__price-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.public-home .yts-home__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--home-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.public-home .yts-home__button:hover,
.public-home .yts-home__button:focus-visible,
.public-home .yts-home__text-link:hover,
.public-home .yts-home__text-link:focus-visible,
.public-home .yts-home__circle-link:hover,
.public-home .yts-home__circle-link:focus-visible {
    transform: translateY(-2px);
}

.public-home .yts-home__button:focus-visible,
.public-home .yts-home__text-link:focus-visible,
.public-home .yts-home__circle-link:focus-visible,
.public-home .yts-home__carousel-controls button:focus-visible,
.public-home .yts-home__disclosure summary:focus-visible {
    outline: 3px solid rgba(255, 184, 0, 0.48);
    outline-offset: 3px;
}

.public-home .yts-home__button svg,
.public-home .yts-home__location-pills svg,
.public-home .yts-home__final-actions svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 auto;
}

.public-home .yts-home__button--whatsapp {
    background: var(--home-amber);
    border-color: var(--home-amber);
    box-shadow: 0 8px 20px rgba(223, 153, 0, 0.18);
}

.public-home .yts-home__button--whatsapp:hover,
.public-home .yts-home__button--whatsapp:focus-visible,
.public-home .yts-home__button--amber:hover,
.public-home .yts-home__button--amber:focus-visible {
    background: #ffc62c;
    box-shadow: 0 10px 24px rgba(223, 153, 0, 0.26);
}

.public-home .yts-home__button--outline {
    border-color: #5d8a76;
    background: rgba(255, 255, 255, 0.72);
    color: var(--home-green-dark);
}

.public-home .yts-home__button--outline:hover,
.public-home .yts-home__button--outline:focus-visible {
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(20, 88, 58, 0.1);
}

.public-home .yts-home__carousel {
    position: relative;
    min-width: 0;
    min-height: 450px;
    background: #e9e3d9;
    overflow: hidden;
}

.public-home .yts-home__carousel::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 86px;
    background: linear-gradient(90deg, #fbf6ed, rgba(251, 246, 237, 0));
    pointer-events: none;
}

.public-home .yts-home__carousel-stage,
.public-home .yts-home__slide {
    position: absolute;
    inset: 0;
}

.public-home .yts-home__slide {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.public-home .yts-home__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.public-home .yts-home__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-home .yts-home__slide figcaption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    max-width: 260px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 14px;
    background: rgba(10, 43, 29, 0.86);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.public-home .yts-home__slide figcaption span {
    margin-bottom: 3px;
    color: #ffd15c;
    font-size: 11px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.public-home .yts-home__carousel-controls {
    position: absolute;
    z-index: 4;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-home .yts-home__carousel-controls > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--home-green-dark);
    font-size: 18px;
    cursor: pointer;
}

.public-home .yts-home__carousel-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
}

.public-home .yts-home__carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #a8b2a9;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.public-home .yts-home__carousel-dots button.is-active {
    width: 24px;
    background: var(--home-green);
}

.public-home .yts-home__section {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

.public-home .yts-home__section--modalities {
    padding-top: 40px;
}

.public-home .yts-home__section--courses {
    padding-top: 34px;
}

.public-home .yts-home__section-heading {
    margin-bottom: 22px;
    text-align: center;
}

.public-home .yts-home__section-heading h2 {
    margin: 6px 0 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(27px, 2.5vw, 38px);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.public-home .yts-home__modality-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.public-home .yts-home__modality {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 178px;
    padding: 28px;
    border: 1px solid #d9e4dc;
    border-radius: 20px;
    background: linear-gradient(120deg, #f9fcf8, #ffffff);
    box-shadow: 0 10px 32px rgba(23, 46, 34, 0.05);
    scroll-margin-top: 100px;
}

.public-home .yts-home__modality--in-person {
    border-color: #f1d9bd;
    background: linear-gradient(120deg, #fff9f0, #ffffff);
}

.public-home .yts-home__icon,
.public-home .yts-home__category-icon,
.public-home .yts-home__summary-icon,
.public-home .yts-home__location-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--home-green);
}

.public-home .yts-home__icon {
    width: 74px;
    height: 74px;
    border: 1px solid #d2e0d4;
    border-radius: 50%;
    background: var(--home-green-soft);
}

.public-home .yts-home__modality--in-person .yts-home__icon {
    border-color: #f2d5ad;
    background: #fff3df;
    color: var(--home-orange);
}

.public-home .yts-home__icon svg,
.public-home .yts-home__category-icon svg,
.public-home .yts-home__summary-icon svg,
.public-home .yts-home__location-marker svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.public-home .yts-home__card-kicker {
    display: inline-block;
    margin-bottom: 3px;
    color: var(--home-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-home .yts-home__modality--in-person .yts-home__card-kicker {
    color: #b65b00;
}

.public-home .yts-home__modality h3 {
    margin: 0 0 8px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 600;
}

.public-home .yts-home__modality p {
    max-width: 600px;
    margin-bottom: 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.5;
}

.public-home .yts-home__location-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.public-home .yts-home__location-pills span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid #edd8bd;
    border-radius: 999px;
    background: #ffffff;
    color: #554838;
    font-size: 13px;
    font-weight: 700;
}

.public-home .yts-home__location-pills svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--home-orange);
    stroke-width: 1.8;
}

.public-home .yts-home__text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--home-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.public-home .yts-home__modality--in-person .yts-home__text-link {
    background: var(--home-orange);
}

.public-home .yts-home__course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.public-home .yts-home__course-category {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 150px;
    padding: 24px;
    border: 1px solid #e0e6df;
    border-radius: 18px;
    background: #fbfdf9;
}

.public-home .yts-home__course-category--kids {
    border-color: #f1dcc1;
    background: #fffaf2;
}

.public-home .yts-home__course-category--prep {
    border-color: #dfd8e9;
    background: #fbf8ff;
}

.public-home .yts-home__category-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #edf5ed;
}

.public-home .yts-home__course-category--kids .yts-home__category-icon {
    background: #fff1db;
    color: var(--home-orange);
}

.public-home .yts-home__course-category--prep .yts-home__category-icon {
    background: #f0eafa;
    color: #67459a;
}

.public-home .yts-home__category-icon svg {
    width: 30px;
    height: 30px;
}

.public-home .yts-home__course-category h3 {
    margin: 0 0 4px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    font-weight: 600;
}

.public-home .yts-home__course-category p {
    margin-bottom: 12px;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.45;
}

.public-home .yts-home__level-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.public-home .yts-home__level-list span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(20, 88, 58, 0.08);
    color: #3d4e43;
    font-size: 11px;
}

.public-home .yts-home__course-category--kids .yts-home__level-list span {
    background: rgba(244, 138, 24, 0.1);
}

.public-home .yts-home__course-category--prep .yts-home__level-list span {
    background: rgba(103, 69, 154, 0.09);
}

.public-home .yts-home__circle-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--home-green-dark);
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(30, 51, 39, 0.09);
    transition: transform 0.18s ease;
}

.public-home .yts-home__section--details {
    display: grid;
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 40px;
}

.public-home .yts-home__disclosure {
    border: 1px solid var(--home-line);
    border-radius: 15px;
    background: #ffffff;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.public-home .yts-home__disclosure summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 14px 20px;
    cursor: pointer;
    list-style: none;
}

.public-home .yts-home__disclosure summary::-webkit-details-marker {
    display: none;
}

.public-home .yts-home__summary-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--home-green-soft);
}

.public-home .yts-home__summary-icon svg {
    width: 23px;
    height: 23px;
}

.public-home .yts-home__disclosure summary strong,
.public-home .yts-home__disclosure summary small {
    display: block;
}

.public-home .yts-home__disclosure summary strong {
    margin-bottom: 3px;
    color: var(--home-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 19px;
}

.public-home .yts-home__disclosure summary small {
    color: var(--home-muted);
    font-size: 13px;
}

.public-home .yts-home__summary-arrow {
    color: var(--home-green);
    font-size: 24px;
    transition: transform 0.2s ease;
}

.public-home .yts-home__disclosure[open] .yts-home__summary-arrow {
    transform: rotate(180deg);
}

.public-home .yts-home__disclosure-body {
    padding: 4px 20px 24px;
    border-top: 1px solid #eee8df;
}

.public-home .yts-home__privacy-note {
    margin: 18px 0;
    padding: 10px 13px;
    border-left: 3px solid var(--home-amber);
    background: #fff9ea;
    color: #5c5034;
    font-size: 13px;
    line-height: 1.45;
}

.public-home .yts-home__path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.public-home .yts-home__path-card {
    padding: 19px;
    border: 1px solid #e8e3da;
    border-radius: 14px;
    background: #fffdf9;
}

.public-home .yts-home__path-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: #7a6b56;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.public-home .yts-home__path-card-head strong {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--home-green-soft);
    color: var(--home-green);
    letter-spacing: 0;
    text-transform: none;
}

.public-home .yts-home__path-card h3 {
    margin: 0 0 7px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 21px;
}

.public-home .yts-home__path-card > p {
    margin-bottom: 15px;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.48;
}

.public-home .yts-home__materials > span {
    display: block;
    margin-bottom: 7px;
    color: #766850;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.public-home .yts-home__materials ul {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.public-home .yts-home__materials li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    border: 1px solid #dae5dc;
    border-radius: 999px;
    background: #ffffff;
    color: #3f4c43;
    font-size: 11px;
}

.public-home .yts-home__materials li > span {
    color: var(--home-green);
    font-weight: 800;
}

.public-home .yts-home__materials li > p {
    flex-basis: 100%;
    margin: 3px 0 0;
}

.public-home .yts-home__availability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 18px;
}

.public-home .yts-home__availability-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 230px;
    padding: 20px;
    border: 1px solid #e8e3da;
    border-radius: 14px;
    background: #fffdf9;
}

.public-home .yts-home__location-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}

.public-home .yts-home__location-marker {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--home-green-soft);
}

.public-home .yts-home__location-marker svg {
    width: 22px;
    height: 22px;
}

.public-home .yts-home__location-heading h3,
.public-home .yts-home__location-heading p {
    margin-bottom: 0;
}

.public-home .yts-home__location-heading h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 21px;
}

.public-home .yts-home__location-heading p {
    margin-top: 2px;
    color: var(--home-muted);
    font-size: 12px;
}

.public-home .yts-home__availability-empty {
    margin: 8px 0 20px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.45;
}

.public-home .yts-home__class-list {
    width: 100%;
    margin-bottom: 18px;
    padding: 0;
    list-style: none;
}

.public-home .yts-home__class-list li {
    display: grid;
    grid-template-columns: minmax(120px, 0.8fr) minmax(150px, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #eee9e1;
    color: #465148;
    font-size: 13px;
}

.public-home .yts-home__class-list li:first-child {
    border-top: 0;
}

.public-home .yts-home__class-list strong {
    color: var(--home-green-dark);
}

.public-home .yts-home__class-list small {
    color: #7e7568;
}

.public-home .yts-home__button--small {
    min-height: 38px;
    margin-top: auto;
    padding: 0 16px;
    border-color: #7aa08e;
    background: #ffffff;
    color: var(--home-green-dark);
    font-size: 12px;
}

.public-home .yts-home__button--small:hover,
.public-home .yts-home__button--small:focus-visible {
    background: var(--home-green-soft);
}

.public-home .yts-home__price-table-wrap {
    margin-top: 18px;
    border: 1px solid #e5dfd5;
    border-radius: 13px;
    overflow-x: auto;
}

.public-home .yts-home__price-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 13px;
}

.public-home .yts-home__price-table th,
.public-home .yts-home__price-table td {
    padding: 12px 14px;
    border-right: 1px solid #e9e3da;
    border-bottom: 1px solid #e9e3da;
    text-align: left;
    vertical-align: middle;
}

.public-home .yts-home__price-table tr > *:last-child {
    border-right: 0;
}

.public-home .yts-home__price-table tbody tr:last-child > * {
    border-bottom: 0;
}

.public-home .yts-home__price-table thead th {
    background: var(--home-green-dark);
    color: #ffffff;
    font-size: 12px;
}

.public-home .yts-home__price-table thead th:first-child {
    background: #f8f3e9;
    color: var(--home-green-dark);
}

.public-home .yts-home__price-table tbody th {
    color: var(--home-green-dark);
}

.public-home .yts-home__price-table small {
    display: block;
    margin-top: 2px;
    color: inherit;
    font-size: 10px;
    font-weight: 500;
    opacity: 0.78;
}

.public-home .yts-home__price-actions {
    justify-content: space-between;
    padding-top: 14px;
}

.public-home .yts-home__price-actions p {
    margin-bottom: 0;
    color: var(--home-muted);
    font-size: 12px;
}

.public-home .yts-home__final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto 34px;
    padding: 30px 36px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 0 100%, rgba(255, 184, 0, 0.16), transparent 24%),
        linear-gradient(110deg, #0d432e, #145f3e);
    color: #ffffff;
}

.public-home .yts-home__final-cta > div > span {
    color: #ffd15c;
}

.public-home .yts-home__final-cta h2 {
    margin: 5px 0 0;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(26px, 2.4vw, 38px);
    font-weight: 600;
}

.public-home .yts-home__button--amber {
    background: var(--home-amber);
    color: #17201b;
}

.public-home .yts-home__button--outline-light {
    border-color: rgba(255, 255, 255, 0.65);
    color: #ffffff;
}

.public-home .yts-home__button--outline-light:hover,
.public-home .yts-home__button--outline-light:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1100px) {
    .public-home .yts-home__hero {
        grid-template-columns: 1fr 1fr;
    }

    .public-home .yts-home__hero-copy {
        padding-right: 40px;
        padding-left: 40px;
    }

    .public-home .yts-home__modality {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .public-home .yts-home__modality .yts-home__text-link {
        grid-column: 2;
        justify-self: start;
    }

    .public-home .yts-home__course-grid,
    .public-home .yts-home__path-grid {
        grid-template-columns: 1fr 1fr;
    }

    .public-home .yts-home__course-category--prep {
        grid-column: 1 / -1;
    }
}

@media (max-width: 780px) {
    .public-home .yts-home__hero {
        display: flex;
        flex-direction: column;
        min-height: 0;
        background: #fffaf2;
    }

    .public-home .yts-home__hero-copy {
        padding: 42px 22px 36px;
    }

    .public-home .yts-home__hero h1 {
        font-size: clamp(43px, 14vw, 62px);
    }

    .public-home .yts-home__hero-copy > p {
        font-size: 17px;
    }

    .public-home .yts-home__hero-actions,
    .public-home .yts-home__hero-actions .yts-home__button {
        width: 100%;
    }

    .public-home .yts-home__carousel {
        min-height: 330px;
    }

    .public-home .yts-home__carousel::before {
        display: none;
    }

    .public-home .yts-home__slide figcaption {
        right: 18px;
        bottom: 18px;
        max-width: calc(100% - 120px);
    }

    .public-home .yts-home__carousel-controls {
        left: 18px;
        bottom: 18px;
    }

    .public-home .yts-home__carousel-controls > button {
        display: none;
    }

    .public-home .yts-home__section,
    .public-home .yts-home__final-cta {
        width: min(100% - 28px, 680px);
    }

    .public-home .yts-home__section--modalities {
        padding-top: 32px;
    }

    .public-home .yts-home__modality-grid,
    .public-home .yts-home__course-grid,
    .public-home .yts-home__path-grid,
    .public-home .yts-home__availability-grid {
        grid-template-columns: 1fr;
    }

    .public-home .yts-home__course-category--prep {
        grid-column: auto;
    }

    .public-home .yts-home__modality,
    .public-home .yts-home__course-category {
        padding: 20px;
    }

    .public-home .yts-home__modality {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .public-home .yts-home__modality .yts-home__text-link {
        grid-column: 1 / -1;
        width: 100%;
    }

    .public-home .yts-home__icon {
        width: 60px;
        height: 60px;
    }

    .public-home .yts-home__icon svg {
        width: 31px;
        height: 31px;
    }

    .public-home .yts-home__course-category {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .public-home .yts-home__disclosure summary {
        min-height: 68px;
        padding: 12px 14px;
    }

    .public-home .yts-home__disclosure summary small {
        display: none;
    }

    .public-home .yts-home__disclosure-body {
        padding-right: 14px;
        padding-left: 14px;
    }

    .public-home .yts-home__class-list li {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .public-home .yts-home__final-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 22px;
    }

    .public-home .yts-home__final-actions,
    .public-home .yts-home__final-actions .yts-home__button {
        width: 100%;
    }
}

@media (max-width: 470px) {
    .public-home .yts-home__course-category {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .public-home .yts-home__circle-link {
        grid-column: 1 / -1;
        width: 100%;
        border-radius: 999px;
    }

    .public-home .yts-home__carousel {
        min-height: 280px;
    }

    .public-home .yts-home__slide figcaption {
        max-width: calc(100% - 36px);
    }

    .public-home .yts-home__carousel-controls {
        top: 18px;
        bottom: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-home .yts-home *,
    .public-home .yts-home *::before,
    .public-home .yts-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (min-width: 781px) {
    .public-home .yts-home__hero {
        grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
        height: clamp(245px, 27vh, 270px);
        min-height: 245px;
    }

    .public-home .yts-home__hero-copy {
        padding: 15px clamp(36px, 5vw, 76px);
    }

    .public-home .yts-home__eyebrow,
    .public-home .yts-home__section-heading > span,
    .public-home .yts-home__final-cta > div > span {
        font-size: 9px;
        letter-spacing: 0.13em;
    }

    .public-home .yts-home__hero h1 {
        max-width: 570px;
        margin: 6px 0 9px;
        font-size: clamp(38px, 2.9vw, 46px);
        line-height: 0.96;
    }

    .public-home .yts-home__hero-copy > p {
        max-width: 570px;
        margin-bottom: 15px;
        font-size: 15px;
        line-height: 1.35;
    }

    .public-home .yts-home__button {
        min-height: 37px;
        padding: 0 16px;
        font-size: 12px;
    }

    .public-home .yts-home__carousel {
        height: 100%;
        min-height: 245px;
    }

    .public-home .yts-home__slide figcaption {
        right: 14px;
        bottom: 14px;
        padding: 9px 12px;
        border-radius: 10px;
        font-size: 13px;
    }

    .public-home .yts-home__slide figcaption span {
        font-size: 9px;
    }

    .public-home .yts-home__carousel-controls {
        left: 14px;
        bottom: 14px;
        gap: 7px;
    }

    .public-home .yts-home__carousel-controls > button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .public-home .yts-home__carousel-dots {
        gap: 4px;
        padding: 6px 8px;
    }

    .public-home .yts-home__section {
        width: min(1440px, calc(100% - 64px));
    }

    .public-home .yts-home__section--modalities {
        padding-top: 12px;
    }

    .public-home .yts-home__section--courses {
        padding-top: 12px;
    }

    .public-home .yts-home__section-heading {
        margin-bottom: 8px;
    }

    .public-home .yts-home__section-heading h2 {
        margin-top: 2px;
        font-size: clamp(21px, 1.7vw, 27px);
    }

    .public-home .yts-home__modality-grid,
    .public-home .yts-home__course-grid {
        gap: 10px;
    }

    .public-home .yts-home__modality-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-home .yts-home__course-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .public-home .yts-home__course-category--prep {
        grid-column: auto;
    }

    .public-home .yts-home__modality {
        min-height: 94px;
        padding: 12px 15px;
        border-radius: 14px;
        gap: 12px;
    }

    .public-home .yts-home__icon {
        width: 48px;
        height: 48px;
    }

    .public-home .yts-home__icon svg {
        width: 26px;
        height: 26px;
    }

    .public-home .yts-home__card-kicker {
        margin-bottom: 1px;
        font-size: 9px;
    }

    .public-home .yts-home__modality h3 {
        margin-bottom: 3px;
        font-size: 20px;
    }

    .public-home .yts-home__modality p {
        font-size: 11.5px;
        line-height: 1.3;
    }

    .public-home .yts-home__location-pills {
        gap: 5px;
    }

    .public-home .yts-home__location-pills span {
        min-height: 24px;
        padding: 0 8px;
        font-size: 10px;
    }

    .public-home .yts-home__text-link {
        min-height: 32px;
        padding: 0 13px;
        font-size: 10.5px;
    }

    .public-home .yts-home__course-category {
        min-height: 82px;
        padding: 10px 13px;
        border-radius: 13px;
        gap: 10px;
    }

    .public-home .yts-home__category-icon {
        width: 42px;
        height: 42px;
    }

    .public-home .yts-home__category-icon svg {
        width: 23px;
        height: 23px;
    }

    .public-home .yts-home__course-category h3 {
        margin-bottom: 3px;
        font-size: 18px;
    }

    .public-home .yts-home__course-category p {
        display: none;
    }

    .public-home .yts-home__level-list {
        gap: 4px;
    }

    .public-home .yts-home__level-list span {
        padding: 3px 6px;
        font-size: 9px;
    }

    .public-home .yts-home__circle-link {
        width: 31px;
        height: 31px;
        font-size: 16px;
    }

    .public-home .yts-home__section--details {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .public-home .yts-home__disclosure {
        border-radius: 11px;
    }

    .public-home .yts-home__disclosure[open] {
        grid-column: 1 / -1;
    }

    .public-home .yts-home__disclosure summary {
        min-height: 50px;
        padding: 7px 11px;
        gap: 9px;
    }

    .public-home .yts-home__summary-icon {
        width: 33px;
        height: 33px;
    }

    .public-home .yts-home__summary-icon svg {
        width: 18px;
        height: 18px;
    }

    .public-home .yts-home__disclosure summary strong {
        margin-bottom: 1px;
        font-size: 14px;
    }

    .public-home .yts-home__disclosure summary small {
        font-size: 10px;
    }

    .public-home .yts-home__summary-arrow {
        font-size: 18px;
    }

    .public-home .yts-home__final-cta {
        width: min(1440px, calc(100% - 64px));
        min-height: 58px;
        margin-bottom: 8px;
        padding: 10px 20px;
        border-radius: 14px;
    }

    .public-home .yts-home__final-cta h2 {
        margin-top: 2px;
        font-size: clamp(20px, 1.6vw, 25px);
    }

    .public-home #site-footer {
        padding-top: 0;
    }

    .public-home #site-footer .site-footer-inner {
        padding-top: 7px;
        padding-bottom: 8px;
        font-size: 12px;
    }
}
