:root {
    --tl-primary: #006767;
    --tl-primary-dark: #004f4f;
    --tl-primary-light: #e4f5f4;
    --tl-green: #69b706;
    --tl-green-dark: #4f9400;
    --tl-ink: #1e2a2a;
    --tl-muted: #647373;
    --tl-line: #dce5e4;
    --tl-surface: #ffffff;
    --tl-surface-soft: #f4f8f8;
    --tl-sand: #f7f4e8;
    --tl-shadow: 0 16px 42px rgba(16, 56, 56, .10);
    --tl-radius: 18px;
}

.tl-litoral,
.tl-litoral * {
    box-sizing: border-box;
}

.tl-litoral {
    background: var(--tl-surface);
    color: var(--tl-ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.tl-litoral img {
    max-width: 100%;
}

.tl-litoral a {
    color: inherit;
    text-decoration: none;
}

.tl-litoral button,
.tl-litoral input,
.tl-litoral select {
    font: inherit;
}

.tl-litoral .material-symbols-outlined {
    font-size: 22px;
    font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
    line-height: 1;
}

.tl-litoral-container {
    width: min(1280px, calc(100% - 40px));
    margin-inline: auto;
}

.tl-litoral-container--narrow {
    width: min(860px, calc(100% - 40px));
}

.tl-litoral h1,
.tl-litoral h2,
.tl-litoral h3 {
    margin: 0;
    color: var(--tl-ink);
    font-family: "Barlow Condensed", Arial, sans-serif;
    line-height: 1.08;
}

.tl-litoral h1 {
    font-size: clamp(48px, 6vw, 78px);
    letter-spacing: -.025em;
}

.tl-litoral h2 {
    font-size: clamp(36px, 4vw, 52px);
}

.tl-litoral h3 {
    font-size: 28px;
}

.tl-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.tl-button:hover {
    transform: translateY(-1px);
}

.tl-button:focus-visible,
.tl-litoral a:focus-visible,
.tl-litoral input:focus-visible,
.tl-litoral select:focus-visible,
.tl-litoral summary:focus-visible,
.tl-litoral button:focus-visible {
    outline: 3px solid rgba(105, 183, 6, .45);
    outline-offset: 3px;
}

.tl-button--primary {
    background: var(--tl-primary);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(0, 103, 103, .22);
}

.tl-button--primary:hover {
    background: var(--tl-primary-dark);
}

.tl-button--outline {
    border-color: var(--tl-primary);
    background: #fff;
    color: var(--tl-primary) !important;
}

.tl-button--outline:hover {
    background: var(--tl-primary);
    color: #fff !important;
}

.tl-button--ghost {
    background: transparent;
    border-color: var(--tl-line);
    color: var(--tl-primary) !important;
}

.tl-button--green {
    background: var(--tl-green);
    color: #fff !important;
}

.tl-button--green:hover {
    background: var(--tl-green-dark);
}

.tl-litoral-hero {
    min-height: 650px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-color: var(--tl-primary-dark);
    background-image: var(--tl-hero-image);
    background-position: center;
    background-size: cover;
}

.tl-litoral-hero--no-image {
    background: linear-gradient(135deg, #004f4f, #008282 60%, #69b706);
}

.tl-litoral-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 23, 28, .48), rgba(0, 20, 24, .28) 48%, rgba(0, 31, 34, .70));
}

.tl-litoral-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 110px 70px;
    text-align: center;
    color: #fff;
}

.tl-litoral-hero__badge {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--tl-green);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tl-litoral-hero h1 {
    max-width: 930px;
    margin-inline: auto;
    color: #fff;
    text-shadow: 0 5px 24px rgba(0, 0, 0, .35);
}

.tl-litoral-hero__intro {
    max-width: 880px;
    margin: 20px auto 30px;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
}

.tl-hero-search {
    max-width: 980px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, .75fr) auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    backdrop-filter: blur(12px);
}

.tl-hero-search__field,
.tl-hero-search__select {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-inline: 14px;
    color: var(--tl-primary);
}

.tl-hero-search__select {
    border-left: 1px solid var(--tl-line);
}

.tl-hero-search input,
.tl-hero-search select {
    width: 100%;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--tl-ink);
    box-shadow: none;
    outline: 0;
}

.tl-hero-search input::placeholder {
    color: #708080;
}

.tl-quick-filters {
    max-width: 1000px;
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

.tl-quick-filter {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 999px;
    background: rgba(0, 0, 0, .20);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    transition: background .2s ease, border-color .2s ease;
}

.tl-quick-filter:hover,
.tl-quick-filter.is-active {
    border-color: var(--tl-green);
    background: var(--tl-green);
}

.tl-quick-filter .material-symbols-outlined {
    font-size: 19px;
}

.tl-litoral-hero__stats {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    font-weight: 600;
}

.tl-litoral-hero__stats span {
    padding-inline: 8px;
    color: var(--tl-green);
}

.tl-section {
    padding-block: 88px;
}

.tl-section-heading {
    margin-bottom: 34px;
}

.tl-section-heading h2 {
    color: var(--tl-primary);
}

.tl-section-heading p {
    max-width: 780px;
    margin: 10px 0 0;
    color: var(--tl-muted);
    font-size: 17px;
}

.tl-section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.tl-section-heading--center {
    text-align: center;
}

.tl-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--tl-primary) !important;
    font-weight: 800;
    white-space: nowrap;
}

.tl-text-link:hover .material-symbols-outlined {
    transform: translateX(3px);
}

.tl-text-link .material-symbols-outlined {
    transition: transform .2s ease;
}

.tl-destinations {
    background: #fff;
}

.tl-destination-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 390px);
    gap: 22px;
    padding-bottom: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.tl-destination-card {
    scroll-snap-align: start;
}

.tl-destination-card__image {
    height: 245px;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--tl-radius);
    background: var(--tl-surface-soft);
    box-shadow: 0 10px 28px rgba(12, 58, 58, .08);
}

.tl-destination-card__image::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .36));
}

.tl-destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.tl-destination-card:hover img {
    transform: scale(1.06);
}

.tl-destination-card__image > span {
    position: absolute;
    z-index: 1;
    top: 15px;
    right: 15px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .93);
    color: var(--tl-primary);
    font-size: 13px;
    font-weight: 800;
}

.tl-destination-card__body {
    padding: 17px 4px 0;
}

.tl-destination-card__body h3 {
    font-size: 30px;
}

.tl-destination-card__body h3 a:hover {
    color: var(--tl-primary);
}

.tl-destination-card__body p {
    margin: 7px 0 0;
    color: var(--tl-muted);
    font-size: 14px;
}

.tl-destination-card__subtitle {
    color: var(--tl-primary) !important;
    font-weight: 700;
}

.tl-results-section {
    background: var(--tl-surface-soft);
}

.tl-results-layout {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.tl-filter-panel {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 20px;
    border: 1px solid var(--tl-line);
    border-radius: var(--tl-radius);
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 56, 56, .06);
    scrollbar-width: thin;
}

.tl-filter-panel__mobile-head {
    display: none;
}

.tl-filter-group + .tl-filter-group {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--tl-line);
}

.tl-filter-group__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.tl-filter-group__heading h3 {
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.tl-filter-group__heading .material-symbols-outlined {
    color: var(--tl-primary);
}

.tl-filter-options {
    display: grid;
    gap: 9px;
}

.tl-filter-options--scroll {
    max-height: 210px;
    padding-right: 4px;
    overflow-y: auto;
}

.tl-filter-options label,
.tl-verified-check {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #405050;
    font-size: 14px;
    cursor: pointer;
}

.tl-filter-options label small {
    margin-left: auto;
    color: #8a9797;
}

.tl-filter-options input,
.tl-verified-check input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    accent-color: var(--tl-primary);
}

.tl-filter-selects {
    display: grid;
    gap: 12px;
}

.tl-filter-selects label,
.tl-price-range label {
    display: grid;
    gap: 5px;
    color: var(--tl-muted);
    font-size: 12px;
    font-weight: 700;
}

.tl-filter-selects select,
.tl-price-range input,
.tl-mobile-toolbar select,
.tl-desktop-sort select {
    width: 100%;
    min-height: 43px;
    padding: 8px 10px;
    border: 1px solid var(--tl-line);
    border-radius: 9px;
    background: #fff;
    color: var(--tl-ink);
}

.tl-price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.tl-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 22px;
}

.tl-filter-actions .tl-button {
    width: 100%;
}

.tl-results-head {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--tl-line);
}

.tl-results-head > div {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--tl-muted);
}

.tl-results-head strong {
    color: var(--tl-primary);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 32px;
}

.tl-desktop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tl-muted);
    font-size: 13px;
}

.tl-desktop-sort select {
    width: auto;
    min-width: 190px;
}

.tl-beach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tl-beach-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--tl-line);
    border-radius: var(--tl-radius);
    background: #fff;
    box-shadow: 0 7px 22px rgba(16, 56, 56, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.tl-beach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tl-shadow);
}

.tl-beach-card__image {
    aspect-ratio: 4 / 3;
    position: relative;
    display: block;
    overflow: hidden;
    background: #dfe7e7;
}

.tl-beach-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .14), transparent 38%, rgba(0, 0, 0, .25));
    pointer-events: none;
}

.tl-beach-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

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

.tl-beach-card__location,
.tl-beach-card__featured {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.tl-beach-card__location {
    top: 13px;
    left: 13px;
    background: rgba(0, 103, 103, .94);
    color: #fff;
}

.tl-beach-card__location .material-symbols-outlined {
    font-size: 16px;
}

.tl-beach-card__featured {
    left: 13px;
    bottom: 13px;
    border-radius: 8px;
    background: rgba(105, 183, 6, .94);
    color: #fff;
}

.tl-beach-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.tl-beach-card__heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.tl-beach-card__heading h3 {
    font-size: 27px;
}

.tl-beach-card__heading h3 a:hover {
    color: var(--tl-primary);
}

.tl-beach-card__comments {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--tl-primary);
    font-size: 12px;
    font-weight: 700;
}

.tl-beach-card__comments .material-symbols-outlined {
    font-size: 16px;
}

.tl-beach-card__description {
    min-height: 72px;
    margin: 10px 0 14px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--tl-muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tl-beach-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}

.tl-beach-card__badges span {
    padding: 5px 8px;
    border-radius: 6px;
    background: var(--tl-primary-light);
    color: var(--tl-primary-dark);
    font-size: 11px;
    font-weight: 700;
}

.tl-beach-card__footer {
    margin-top: auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #edf1f1;
}

.tl-beach-card__meta {
    display: grid;
    gap: 2px;
}

.tl-beach-card__meta strong {
    color: var(--tl-primary);
    font-size: 13px;
}

.tl-beach-card__meta small {
    color: #7b8a8a;
    font-size: 10px;
}

.tl-card-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--tl-primary) !important;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.tl-card-link .material-symbols-outlined {
    font-size: 18px;
}

.tl-load-more-wrap {
    display: flex;
    justify-content: center;
    padding-top: 38px;
}

.tl-load-more.is-loading {
    opacity: .65;
    pointer-events: none;
}

.tl-load-more.is-loading .material-symbols-outlined {
    animation: tl-spin 1s linear infinite;
}

@keyframes tl-spin {
    to { transform: rotate(360deg); }
}

.tl-no-results {
    padding: 60px 25px;
    border: 1px dashed #b8c8c8;
    border-radius: var(--tl-radius);
    background: #fff;
    text-align: center;
}

.tl-no-results > .material-symbols-outlined {
    color: var(--tl-primary);
    font-size: 54px;
}

.tl-no-results h3 {
    margin-top: 12px;
}

.tl-no-results p {
    color: var(--tl-muted);
}

.tl-quiz-banner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 25px;
    margin-top: 44px;
    padding: 38px;
    overflow: hidden;
    border-radius: 24px;
    background: #263a3a;
    color: #fff;
}

.tl-quiz-banner::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(0, 130, 130, .32);
}

.tl-quiz-banner > div,
.tl-quiz-banner__icon {
    position: relative;
    z-index: 1;
}

.tl-quiz-banner h2 {
    margin: 6px 0 10px;
    color: #fff;
    font-size: 42px;
}

.tl-quiz-banner p {
    max-width: 690px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .78);
}

.tl-quiz-banner__eyebrow {
    color: #a4e552;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tl-quiz-banner__icon {
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 62px !important;
}

.tl-collections {
    background: var(--tl-sand);
}

.tl-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.tl-collection-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(0, 103, 103, .12);
    border-radius: var(--tl-radius);
    background: #fff;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.tl-collection-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 103, 103, .35);
    box-shadow: var(--tl-shadow);
}

.tl-collection-card > .material-symbols-outlined {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--tl-primary-light);
    color: var(--tl-primary);
    font-size: 34px;
}

.tl-collection-card h3 {
    margin-top: 20px;
    font-size: 29px;
}

.tl-collection-card p {
    margin: 10px 0 22px;
    color: var(--tl-muted);
    font-size: 14px;
}

.tl-collection-card strong {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--tl-primary);
    font-size: 13px;
}

.tl-collection-card strong .material-symbols-outlined {
    font-size: 18px;
}

.tl-seo-section {
    background: #fff;
}

.tl-seo-content h2,
.tl-faq h2 {
    color: var(--tl-primary);
}

.tl-seo-content p,
.tl-seo-content li {
    color: #566767;
    font-size: 17px;
}

.tl-seo-content p {
    margin: 16px 0;
}

.tl-faq {
    margin-top: 56px;
}

.tl-faq h2 {
    margin-bottom: 24px;
    font-size: 38px;
}

.tl-faq details {
    border: 1px solid var(--tl-line);
    border-radius: 13px;
    background: var(--tl-surface-soft);
}

.tl-faq details + details {
    margin-top: 11px;
}

.tl-faq summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    color: var(--tl-ink);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.tl-faq summary::-webkit-details-marker {
    display: none;
}

.tl-faq summary .material-symbols-outlined {
    color: var(--tl-primary);
    transition: transform .2s ease;
}

.tl-faq details[open] summary .material-symbols-outlined {
    transform: rotate(180deg);
}

.tl-faq details > div {
    padding: 0 20px 18px;
    color: var(--tl-muted);
}

.tl-faq details > div p {
    margin: 0;
}

.tl-mobile-toolbar {
    display: none;
}

.tl-filter-backdrop {
    display: none;
}

.tl-pagination ul {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 30px 0 0;
    margin: 0;
    list-style: none;
}

.tl-pagination a,
.tl-pagination span {
    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--tl-line);
    border-radius: 50%;
    background: #fff;
}

.tl-pagination .current {
    border-color: var(--tl-primary);
    background: var(--tl-primary);
    color: #fff;
}

@media (max-width: 1180px) {
    .tl-beach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tl-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body.tl-filter-is-open {
        overflow: hidden;
    }

    .tl-litoral-hero {
        min-height: 620px;
    }

    .tl-hero-search {
        grid-template-columns: 1fr;
    }

    .tl-hero-search__select {
        border-top: 1px solid var(--tl-line);
        border-left: 0;
    }

    .tl-results-layout {
        display: block;
    }

    .tl-mobile-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 20px;
    }

    .tl-filter-open {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 14px;
        border: 1px solid var(--tl-primary);
        border-radius: 10px;
        background: #fff;
        color: var(--tl-primary);
        font-weight: 800;
    }

    .tl-mobile-toolbar label {
        flex: 1;
        max-width: 240px;
    }

    .tl-filter-panel {
        width: min(430px, 92vw);
        max-height: none;
        position: fixed;
        z-index: 99991;
        inset: 0 auto 0 0;
        top: 0;
        padding: 0 20px 25px;
        overflow-y: auto;
        border: 0;
        border-radius: 0 18px 18px 0;
        transform: translateX(-105%);
        transition: transform .28s ease;
    }

    .tl-filter-panel.is-open {
        transform: translateX(0);
    }

    .tl-filter-panel__mobile-head {
        position: sticky;
        z-index: 2;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--tl-line);
        background: #fff;
        font-size: 20px;
    }

    .tl-filter-panel__mobile-head button {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: var(--tl-surface-soft);
        color: var(--tl-primary);
        cursor: pointer;
    }

    .tl-filter-backdrop {
        position: fixed;
        z-index: 99990;
        inset: 0;
        display: block;
        background: rgba(0, 24, 27, .54);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    .tl-filter-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .tl-results-head {
        min-height: 0;
    }

    .tl-desktop-sort {
        display: none;
    }
}

@media (max-width: 680px) {
    .tl-litoral-container,
    .tl-litoral-container--narrow {
        width: min(100% - 28px, 1280px);
    }

    .tl-litoral-hero {
        min-height: 590px;
    }

    .tl-litoral-hero__content {
        padding-block: 80px 45px;
    }

    .tl-litoral h1 {
        font-size: 45px;
    }

    .tl-litoral h2 {
        font-size: 37px;
    }

    .tl-litoral-hero__intro {
        font-size: 15px;
    }

    .tl-hero-search {
        padding: 8px;
        border-radius: 15px;
    }

    .tl-hero-search__field,
    .tl-hero-search__select {
        min-height: 48px;
    }

    .tl-quick-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 2px 0 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .tl-quick-filter {
        flex: 0 0 auto;
    }

    .tl-litoral-hero__stats {
        display: grid;
        gap: 3px;
    }

    .tl-litoral-hero__stats span {
        display: none;
    }

    .tl-section {
        padding-block: 60px;
    }

    .tl-section-heading--split {
        display: block;
    }

    .tl-section-heading--split .tl-text-link {
        margin-top: 16px;
    }

    .tl-destination-scroll {
        grid-auto-columns: minmax(270px, 85vw);
    }

    .tl-destination-card__image {
        height: 210px;
    }

    .tl-beach-grid,
    .tl-collection-grid {
        grid-template-columns: 1fr;
    }

    .tl-results-head > div {
        align-items: center;
    }

    .tl-beach-card__description {
        min-height: auto;
    }

    .tl-quiz-banner {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .tl-quiz-banner h2 {
        font-size: 36px;
    }

    .tl-quiz-banner__icon {
        display: none;
    }

    .tl-collection-card {
        min-height: 245px;
    }
}
