/* FEEL Research Guide - defaults closely matching the supplied archive screenshot. */
.feel-rg,
.feel-rg *,
.feel-rg *::before,
.feel-rg *::after { box-sizing: border-box; }

.feel-rg {
    --feel-text: #000;
    --feel-bg: #fff;
    --feel-border: #dedede;
    --feel-heading: #77716a;
    --feel-card-hover-scale: 1.035;
    --feel-card-hover-duration: 550ms;
    --feel-card-hover-title: #000;
    --feel-card-underline: #000;
    width: 100%;
    background: var(--feel-bg);
    color: var(--feel-text);
}

.feel-rg__heading {
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--feel-heading);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(42px, 3.25vw, 58px);
    font-weight: 300;
    line-height: .95;
    letter-spacing: -.045em;
}

.feel-health-guide-list__inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 58px 4vw 80px;
}

.feel-health-guide-controls {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 57px;
    padding: 0;
    border: 0;
}

.feel-health-guide-controls__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feel-health-guide-controls__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.feel-health-guide-controls__label,
.feel-health-guide-dropdown__button,
.feel-health-guide-dropdown__list {
    font-family: "Courier New", Courier, monospace;
}

.feel-health-guide-controls__label {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.feel-health-guide-dropdown { position: relative; display: inline-block; }

.feel-health-guide-dropdown__button {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 24px;
    margin: 0;
    padding: 5px 10px;
    background: #fff;
    color: #000;
    border: 1px solid var(--feel-border);
    border-radius: 6px;
    box-shadow: none;
    outline: 0;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}

.feel-health-guide-dropdown__button:hover,
.feel-health-guide-dropdown__button:focus {
    background: #fff;
    color: #000;
    border-color: #cfcfcf;
}

.feel-health-guide-dropdown__label,
.feel-health-guide-dropdown__value { font: inherit; color: inherit; }

.feel-health-guide-dropdown__icon,
.feel-health-guide-sort-icon { flex: 0 0 auto; transition: transform .2s ease; }

.feel-health-guide-dropdown.is-open .feel-health-guide-dropdown__icon { transform: rotate(180deg); }

.feel-health-guide-dropdown__list {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    z-index: 100;
    display: none;
    min-width: 170px;
    margin: 0;
    padding: 5px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--feel-border);
    border-radius: 7px;
    box-shadow: 0 5px 18px rgba(0,0,0,.06);
    font-size: 10px;
    line-height: 1.3;
}

.feel-health-guide-dropdown__list--right { right: 0; left: auto; min-width: 125px; }
.feel-health-guide-dropdown.is-open .feel-health-guide-dropdown__list { display: block; }

.feel-health-guide-dropdown__list li {
    display: block;
    margin: 0;
    padding: 8px 9px;
    border-radius: 4px;
    color: #000;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}

.feel-health-guide-dropdown__list li:hover { background: #f5f5f3; }
.feel-health-guide-dropdown__list li[aria-selected="true"] { background: #f1f1ef; }

.feel-health-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 6px;
    row-gap: 52px;
    width: 100%;
}

.feel-health-guide-card {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.feel-health-guide-card__link {
    display: block;
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.feel-health-guide-card__link:hover,
.feel-health-guide-card__link:focus-visible {
    color: var(--feel-card-hover-title);
    text-decoration: none;
}

.feel-health-guide-card__media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.535 / 1;
    background: #eee;
    border-radius: 26px;
}

.feel-health-guide-card__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    border: 0;
    border-radius: 0;
    transform: scale(1);
    transform-origin: center center;
    transition: transform var(--feel-card-hover-duration) cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.feel-health-guide-card__link:hover .feel-health-guide-card__image,
.feel-health-guide-card__link:focus-visible .feel-health-guide-card__image {
    transform: scale(var(--feel-card-hover-scale));
}

.feel-health-guide-card__pill {
    position: absolute;
    top: 13px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 4px 10px 3px;
    background: #fff;
    color: #000;
    border: 0;
    border-radius: 5px;
    font-family: "Courier New", Courier, monospace;
    font-size: 9px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.feel-health-guide-card__title {
    margin: 18px 0 0 !important;
    padding: 0 !important;
    color: #000;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(18px, 1.13vw, 20px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.035em;
    text-decoration: none;
    transition: color 260ms ease, transform var(--feel-card-hover-duration) cubic-bezier(.22,.61,.36,1);
}

.feel-health-guide-card__title-text {
    position: relative;
    display: inline;
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(var(--feel-card-underline), var(--feel-card-underline));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    transition: background-size 420ms cubic-bezier(.22,.61,.36,1), color 260ms ease;
}

.feel-health-guide-card__link:hover .feel-health-guide-card__title,
.feel-health-guide-card__link:focus-visible .feel-health-guide-card__title {
    color: var(--feel-card-hover-title);
    transform: translateY(-1px);
}

.feel-health-guide-card__link:hover .feel-health-guide-card__title-text,
.feel-health-guide-card__link:focus-visible .feel-health-guide-card__title-text {
    background-size: 100% 1px;
}

@media (prefers-reduced-motion: reduce) {
    .feel-health-guide-card__image,
    .feel-health-guide-card__title,
    .feel-health-guide-card__title-text {
        transition-duration: 0.01ms !important;
    }
}

.feel-health-guide-empty {
    grid-column: 1 / -1;
    padding: 50px 0;
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .feel-health-guide-list__inner { padding-left: 24px; padding-right: 24px; }
    .feel-health-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 8px; row-gap: 42px; }
    .feel-health-guide-card__title { font-size: 19px; }
}

@media (max-width: 767px) {
    .feel-rg__heading { font-size: 42px; line-height: 1; }
    .feel-health-guide-list__inner { padding: 42px 16px 60px; }
    .feel-health-guide-controls { align-items: flex-start; margin-bottom: 38px; gap: 16px; }
    .feel-health-guide-controls__left { gap: 8px; }
    .feel-health-guide-dropdown__button { font-size: 9px; padding-left: 8px; padding-right: 8px; }
    .feel-health-guide-grid { grid-template-columns: 1fr; gap: 38px; }
    .feel-health-guide-card__media { border-radius: 22px; }
    .feel-health-guide-card__title { margin-top: 14px !important; font-size: 20px; line-height: 1; }
}
