/**
 * Healthy Hospitality - Main Stylesheet
 *
 * Extracted from the Sage 9 compiled theme CSS.
 * No build step required — plain CSS.
 *
 * CONTENTS:
 * - CSS Custom Properties
 * - Reset
 * - Base / Typography
 * - Headings
 * - Links
 * - Forms
 * - Media
 * - Text Elements
 * - Layout (Wrappers, Containers, Grids)
 * - Buttons
 * - Navigation (Primary, Footer)
 * - Header
 * - Footer
 * - Page Header
 * - Content / Article
 * - Lists / Post Listings
 * - Social Links
 * - Utility Classes (Colors, Spacing, Display, Text)
 * - Hero
 * - Responsive
 */

/* ====================================
   CSS CUSTOM PROPERTIES
   ==================================== */

:root {
    --color-primary: #49cec8;
    --color-secondary: #8acc50;
    --color-tertiary: #f9ce62;
    --color-text: #58595b;
    --color-black: #231f20;
    --color-white: #fff;
    --color-gray: #ddd;
    --color-gray-light: #f7f7f7;
    --color-error: #f24949;

    --font-primary: "proxima-soft", sans-serif;
    --font-secondary: "proxima-soft", "Times New Roman", serif;

    --font-size-xxs: 12px;
    --font-size-xs: 14px;
    --font-size-s: 16px;
    --font-size-m: 22px;
    --font-size-l: 28px;
    --font-size-xl: 40px;
    --font-size-xxl: 60px;

    --header-height: 80px;

    --transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
    --transition-fast: all ease-in-out 0.25s;
}

@media screen and (min-width: 500px) {
    :root {
        --font-size-xxs: 13px;
        --font-size-xs: 16px;
        --font-size-s: 18px;
        --font-size-m: 26px;
        --font-size-l: 30px;
        --font-size-xl: 50px;
        --font-size-xxl: 70px;
        --header-height: 100px;
    }
}

@media screen and (min-width: 1100px) {
    :root {
        --font-size-s: 20px;
        --font-size-m: 30px;
        --font-size-l: 40px;
        --font-size-xl: 60px;
        --font-size-xxl: 90px;
    }
}

/* ====================================
   RESET
   ==================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

blockquote, div, figure, footer, form,
h1, h2, h3, h4, h5, h6,
header, html, iframe, label, legend,
li, nav, object, ol, p, section, table, ul {
    margin: 0;
    padding: 0;
}

article, figure, footer, header, hgroup, nav, section {
    display: block;
}

/* ====================================
   BASE / TYPOGRAPHY
   ==================================== */

html,
body {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: none;
}

body {
    background: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 601px) {
    body {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (min-width: 801px) {
    body {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (min-width: 901px) {
    body {
        font-size: 17px;
    }
}

/* ====================================
   HEADINGS
   ==================================== */

.o-heading--xxl {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    line-height: 0.95;
    font-weight: 700;
}

@media (min-width: 801px) {
    .o-heading--xxl {
        font-size: var(--font-size-xxl);
    }
}

h1,
.o-heading--xl {
    font-family: var(--font-secondary);
    font-size: var(--font-size-l);
    line-height: 1.1;
    font-weight: 700;
}

@media (min-width: 801px) {
    h1,
    .o-heading--xl {
        font-size: var(--font-size-xl);
    }
}

h2,
.o-heading--l {
    font-family: var(--font-secondary);
    font-size: var(--font-size-l);
    line-height: 1.2;
    font-weight: 700;
}

h3,
.o-heading--m {
    font-family: var(--font-secondary);
    font-size: var(--font-size-s);
    line-height: 1.2;
    font-weight: 700;
}

@media (min-width: 801px) {
    h3,
    .o-heading--m {
        font-size: var(--font-size-m);
    }
}

h4,
.o-heading--s {
    font-family: var(--font-secondary);
    font-size: var(--font-size-s);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

h5,
.o-heading--xs {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
}

h6,
.o-heading--xxs {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xxs);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

/* ====================================
   LINKS
   ==================================== */

a {
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
}

.o-link {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    position: relative;
    display: inline-flex;
}

.o-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    background-color: var(--color-secondary);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: var(--transition);
}

.o-link:hover::after,
.o-link:active::after {
    height: 3px;
    border-radius: 1.5px;
}

.o-link-top {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background-color: #eabd59;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 801px) {
    .o-link-top {
        position: absolute;
        right: 40px;
        bottom: 40px;
    }
}

.o-link-top svg path {
    fill: #fff;
}

.o-link-top:hover,
.o-link-top:active {
    background-color: var(--color-secondary);
}

/* ====================================
   MEDIA
   ==================================== */

img, video, object, svg, iframe {
    max-width: 100%;
    border: none;
}

svg {
    max-height: 100%;
}

picture,
picture img {
    display: block;
}

figure {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* ====================================
   TEXT ELEMENTS
   ==================================== */

small {
    font-size: 90%;
}

strong, b {
    font-weight: bold;
}

blockquote {
    border: none;
    text-align: left;
    position: relative;
    display: block;
    padding: 0;
    padding-left: 40px;
}

blockquote > * + * {
    margin-top: 20px;
}

blockquote::before {
    content: '\201E';
    font-family: var(--font-primary);
    display: block;
    height: 100%;
    position: relative;
    color: var(--color-secondary);
    font-size: 150px;
    line-height: 1;
    transform: rotate(180deg);
    text-align: right;
    margin-bottom: -90px;
}

blockquote::after {
    content: '';
    display: block;
    height: 100%;
    width: 6px;
    background: var(--color-tertiary);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

blockquote p {
    display: block;
    font-weight: 600;
}

hr {
    height: 1px;
    border: none;
    background-color: var(--color-gray);
    margin: 0 auto;
}

.o-small-label {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xxs);
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.o-timestamp {
    font-size: var(--font-size-xxs);
    text-transform: uppercase;
}

/* ====================================
   LISTS
   ==================================== */

ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Restore list styles inside content areas */
.o-text ul {
    list-style: disc;
    padding-left: 1.5em;
}

.o-text ol {
    list-style: decimal;
    padding-left: 1.5em;
}

.o-text ul li,
.o-text ol li {
    margin-bottom: 0.5em;
}

/* ====================================
   FORMS
   ==================================== */

form ol, form ul {
    list-style: none;
    margin-left: 0;
}

legend {
    font-weight: bold;
    margin-bottom: 30px;
    display: block;
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

label {
    display: block;
}

button, input, select, textarea {
    -webkit-appearance: none;
    appearance: none;
}

textarea {
    line-height: 1.5;
}

input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea,
select {
    border: 1px solid var(--color-gray);
    background-color: #fff;
    width: 100%;
    outline: 0;
    display: block;
    transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: inherit;
}

input[type="search"] {
    border-radius: 0;
}

.field-container {
    margin-bottom: 20px;
}

/* ====================================
   TABLES
   ==================================== */

table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

table tr {
    border-bottom: 1px solid var(--color-gray);
}

table tr:first-child {
    background-color: #fff;
}

table tr:first-child td {
    font-weight: bold;
}

table tr td {
    padding: 10px;
}

/* ====================================
   LAYOUT - WRAPPERS & CONTAINERS
   ==================================== */

.l-wrap {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    position: relative;
}

@media (min-width: 801px) {
    .l-wrap {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.l-container {
    max-width: 1260px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.l-container--xs {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.l-container--s {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.l-container--m {
    max-width: 1060px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.l-container--l {
    max-width: 1260px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* ====================================
   LAYOUT - GRIDS
   ==================================== */

.l-grid {
    display: grid;
    grid-template-rows: auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

@media (min-width: 1101px) {
    .l-grid {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
    }
}

.l-grid--2up {
    align-items: center;
}

@media (min-width: 801px) {
    .l-grid--2up {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 801px) {
    .l-grid--3up {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 601px) {
    .l-grid--4up {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 901px) {
    .l-grid--4up {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ====================================
   LAYOUT - CONTENT & ARTICLE
   ==================================== */

.l-content {
    min-height: 50vh;
}

main {
    width: 100%;
    margin: 0 auto;
}

.l-main {
    width: 100%;
}

.error404 .l-main {
    margin: 10% 0;
}

.l-article {
    width: 100%;
}

.l-article__featured-image {
    margin-bottom: 40px;
}

.l-article__featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.l-article__footer {
    border-top: 1px solid var(--color-gray);
    padding-top: 20px;
    margin-top: 40px;
}

/* ====================================
   BUTTONS
   ==================================== */

button {
    outline: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
}

.u-button,
.o-button--primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    outline: 0;
    text-align: center;
    border-radius: 50px;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-secondary);
    font-size: var(--font-size-s);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--color-primary);
    border: 0;
}

@media (min-width: 601px) {
    .u-button,
    .o-button--primary {
        white-space: nowrap;
        line-height: 1;
        max-width: 300px;
    }
}

.o-button--with-icon {
    position: relative;
}

.o-button--with-icon {
    padding-right: 40px;
}

.o-button--with-icon svg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.o-button--with-icon:hover svg {
    transform: translateY(-50%) translateX(4px);
}

.u-button::after,
.o-button--primary::after {
    display: none;
}

.u-button:hover,
.u-button:active,
.o-button--primary:hover,
.o-button--primary:active {
    background-color: var(--color-secondary);
    color: #fff;
}

.o-button--primary--outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    outline: 0;
    text-align: center;
    border-radius: 50px;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-secondary);
    font-size: var(--font-size-s);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    background: transparent;
    border: 3px solid var(--color-primary);
}

.o-button--primary--outline:hover,
.o-button--primary--outline:active {
    background-color: var(--color-primary);
    color: #fff;
}

/* Contact Form 7 submit button — match .o-button--primary */
.wpcf7 input[type="submit"],
.wpcf7-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 15px 30px;
    cursor: pointer;
    outline: 0;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-secondary);
    font-size: var(--font-size-s);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--color-primary);
    border: 0;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="submit"]:active,
.wpcf7-submit:hover,
.wpcf7-submit:active {
    background-color: var(--color-secondary);
    color: #fff;
}

.o-button--small {
    padding: 10px 15px;
    border-width: 2px;
    font-size: var(--font-size-xs);
}

/* ====================================
   NAVIGATION - PRIMARY
   ==================================== */

.c-header.this-is-active .c-primary-nav {
    opacity: 1;
    transform: translateX(-90vw);
    box-shadow: 0 0 20px rgba(35, 31, 32, 0.3);
    border-left: 2px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 601px) {
    .c-header.this-is-active .c-primary-nav {
        transform: translateX(-440px);
    }
}

@media (min-width: 901px) {
    .c-header.this-is-active .c-primary-nav {
        transform: translateX(0);
        box-shadow: none;
        border-left: none;
    }
}

.c-primary-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -90vw;
    background-color: var(--color-primary);
    height: 100vh;
    width: 90vw;
    padding: 20px 0;
    z-index: 999;
    transition: var(--transition-fast);
    transform: translateX(0);
    opacity: 0;
    box-shadow: 0 0 20px rgba(35, 31, 32, 0);
    flex-direction: column;
}

@media (min-width: 601px) {
    .c-primary-nav {
        width: 440px;
        right: -440px;
    }
}

@media (min-width: 901px) {
    .c-primary-nav {
        width: 100%;
        position: relative;
        display: block;
        visibility: visible;
        opacity: 1;
        margin-right: 0;
        background-color: transparent;
        height: auto;
        right: 0;
        transform: translateX(0);
        padding: 0;
    }
}

.c-primary-nav__toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

@media (min-width: 901px) {
    .c-primary-nav__toggle {
        display: none;
    }
}

.c-primary-nav__list {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 40px 0 0;
}

@media (min-width: 901px) {
    .c-primary-nav__list {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        padding: 0;
    }
}

.c-primary-nav__link {
    padding: 10px 20px;
    width: 100%;
    display: block;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border-left: 3px solid rgba(249, 206, 98, 0);
    font-family: var(--font-secondary);
    font-size: var(--font-size-l);
    line-height: 1.2;
    font-weight: 700;
}

@media (min-width: 901px) {
    .c-primary-nav__link {
        color: var(--color-text);
        width: auto;
        border: none;
        padding: 10px 0;
        margin-left: 24px;
        font-family: var(--font-secondary);
        font-size: var(--font-size-s);
        line-height: 1.2;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .c-primary-nav__link::after {
        content: "";
        width: 0;
        height: 6px;
        background-color: transparent;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: var(--transition);
        border-radius: 3px;
    }
}

.c-primary-nav__link:hover,
.c-primary-nav__link:active,
.c-primary-nav__link.is-active {
    border-left: 3px solid var(--color-tertiary);
}

@media (min-width: 901px) {
    .c-primary-nav__link:hover,
    .c-primary-nav__link:active,
    .c-primary-nav__link.is-active {
        border-left: 0;
    }

    .c-primary-nav__link:hover::after,
    .c-primary-nav__link:active::after,
    .c-primary-nav__link.is-active::after {
        background-color: var(--color-tertiary);
        width: 100%;
    }
}

/* Donate nav button */
.c-primary-nav__link--donate {
    background: var(--color-tertiary);
    color: var(--color-black);
    border-radius: 50px;
    padding: 8px 20px;
    border-left: none;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

@media (min-width: 901px) {
    .c-primary-nav__link--donate {
        color: var(--color-black);
        padding: 8px 24px;
        margin-left: 12px;
    }

    .c-primary-nav__link--donate::after {
        display: none;
    }
}

.c-primary-nav__link--donate:hover,
.c-primary-nav__link--donate:active {
    background: #eabd59;
    border-left: none;
    color: var(--color-black);
}

/* Close icon */
.o-icon__close {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.o-icon__close span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
}

.o-icon__close span:first-child {
    transform: rotate(45deg);
}

.o-icon__close span:last-child {
    transform: rotate(-45deg);
}

.o-icon__close:hover,
.o-icon__close:active {
    transform: scale(1.1);
}

/* Hamburger icon — compound selector defeats the .o-icon (row inline-flex)
   base rule that appears later in the file. */
.o-icon.o-icon__menu {
    width: 30px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.o-icon.o-icon__menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ====================================
   NAVIGATION - FOOTER
   ==================================== */

.c-footer-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 801px) {
    .c-footer-nav__list {
        flex-direction: row;
        justify-content: center;
    }
}

.c-footer-nav__list > * + * {
    margin-top: 5px;
}

@media (min-width: 801px) {
    .c-footer-nav__list > * + * {
        margin-top: 0;
    }
}

@media (min-width: 801px) {
    .c-footer-nav__list-item::after {
        color: #fff;
        content: "\2022";
        display: inline-flex;
        position: relative;
        top: -1px;
        padding-left: 5px;
        padding-right: 10px;
    }
}

.c-footer-nav__list-item:last-child::after {
    content: "";
}

.c-footer-nav__link {
    color: #fff;
    position: relative;
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
}

.c-footer-nav__link::after {
    content: "";
    width: 0;
    height: 6px;
    background-color: transparent;
    position: absolute;
    bottom: -10px;
    left: 0;
    transition: var(--transition);
    border-radius: 3px;
}

.c-footer-nav__link:hover::after,
.c-footer-nav__link:active::after {
    width: 100%;
    background-color: #fff;
}

/* Pagination */
.pagination__pages {
    text-align: center;
    padding: 30px 20px;
}

@media (min-width: 801px) {
    .pagination__pages {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.pagination__pages .page-numbers {
    display: inline-block;
    padding: 0 3px;
}

.pagination__pages .page-numbers.current {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    line-height: 1.4;
    font-weight: 700;
}

.pagination__pages a.page-numbers {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    position: relative;
    display: inline-flex;
}

.pagination__pages a.page-numbers::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    background-color: var(--color-secondary);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: var(--transition);
}

/* ====================================
   HEADER
   ==================================== */

.c-header {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(35, 31, 32, 0.2);
    position: relative;
    z-index: 100;
}

.c-header--inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.c-header--left {
    display: flex;
    align-items: center;
}

.c-header--right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    right: -10px;
    z-index: 999;
}

@media (min-width: 901px) {
    .c-header--right {
        align-items: center;
        padding-top: 0;
        padding-right: 0;
    }
}

.c-header__logo {
    width: 150px;
    display: block;
}

@media (min-width: 601px) {
    .c-header__logo {
        width: 200px;
    }
}

.c-header__logo svg {
    width: 100%;
    height: auto;
}

.c-header__toggle {
    cursor: pointer;
    margin-top: 0;
    background: none;
    border: none;
    padding: 10px;
}

@media (min-width: 901px) {
    .c-header__toggle {
        display: none;
    }
}

.c-header__toggle-menu {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

/* ====================================
   FOOTER
   ==================================== */

.c-footer {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.c-footer::before {
    content: "";
    display: block;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(165deg, transparent 48%, var(--color-primary) 48%);
}

.c-footer--inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 801px) {
    .c-footer--inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.c-footer__copyright {
    text-align: center;
}

.c-footer__copyright a {
    color: #fff;
}

.o-bullet {
    padding: 0 5px;
}


.c-footer::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    right: -75%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAyNS45OCI+PHRpdGxlPmhleGFnb248L3RpdGxlPjxwb2x5Z29uIHBvaW50cz0iMjIuNSAwIDcuNSAwIDAgMTIuOTkgNy41IDI1Ljk4IDIyLjUgMjUuOTggMzAgMTIuOTkgMjIuNSAwIiBmaWxsPSIjZmZmZmZmIi8+PC9zdmc+") center center no-repeat;
    background-size: 100%;
    opacity: 0.2;
    pointer-events: none;
}

@media (min-width: 801px) {
    .c-footer::after {
        right: -50%;
        background-size: auto;
    }
}

/* ====================================
   PAGE HEADER
   ==================================== */

.c-page-header {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.c-page-header--with-image {
    margin-bottom: 20px;
}

.c-page-header--with-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (min-width: 801px) {
    .c-page-header {
        overflow: hidden;
    }
}

.c-page-header--inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.c-page-header__content {
    overflow: hidden;
    position: relative;
    padding: 40px;
    border-radius: 10px;
}

.c-page-header__content::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: -75%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAyNS45OCI+PHRpdGxlPmhleGFnb248L3RpdGxlPjxwb2x5Z29uIHBvaW50cz0iMjIuNSAwIDcuNSAwIDAgMTIuOTkgNy41IDI1Ljk4IDIyLjUgMjUuOTggMzAgMTIuOTkgMjIuNSAwIiBmaWxsPSIjZmZmZmZmIi8+PC9zdmc+") center center no-repeat;
    background-size: 100%;
    opacity: 0.2;
    pointer-events: none;
}

@media (min-width: 801px) {
    .c-page-header__content::after {
        left: -50%;
        background-size: auto;
    }
}

.c-page-header__content--standard {
    background: none;
    padding: 0;
    border-radius: 0;
}

.c-page-header__content--standard::after {
    display: none;
}

.c-page-header__content--standard h1 {
    color: var(--color-primary);
}

.c-page-header--narrow {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding-top: 20px;
}

.c-page-header--narrow h1 {
    color: var(--color-primary);
}

.c-page-header__intro {
    font-size: var(--font-size-m);
    color: var(--color-text);
    line-height: 1.4;
    margin-top: 12px;
}

.c-page-header__accent {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-tertiary);
    margin-bottom: 12px;
    border-radius: 2px;
}

.l-container--content {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================
   HERO
   ==================================== */

.c-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.c-hero__image {
    width: 100%;
}

.c-hero__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}
.c-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
}

.c-hero__content h1,
.c-hero__content .o-heading--xxl {
    color: #fff;
}

.c-hero + .l-wrap {
    position: relative;
}

.c-hero + .l-wrap::before {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    background: var(--color-tertiary);
}

/* ====================================
   ICONS
   ==================================== */

.o-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.o-icon--s {
    width: 16px;
    height: 16px;
}


/* ====================================
   SOCIAL LINKS
   ==================================== */

.c-footer__social {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.c-social__link {
    margin-left: 40px;
    border-radius: 50px;
    background-color: #fff;
    padding: 10px;
    transform: scale(1);
    transition: transform 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-social__link svg path {
    fill: var(--color-primary);
}

.c-social__link:first-child {
    margin-left: 0;
}

.c-social__link:hover,
.c-social__link:active {
    transform: scale(1.1);
}

/* ====================================
   POST LISTINGS
   ==================================== */

.o-block-vertical-list-view {
    padding-top: 30px;
}

.o-block-vertical-list-view h2 {
    font-size: 20px;
}

.o-block-vertical-list-view .o-small-label {
    padding-bottom: 5px;
}

.o-block-vertical-list-view p {
    padding-top: 15px;
}

.o-block-vertical-list-view__section {
    padding: 30px 0;
    border-bottom: 6px solid var(--color-tertiary);
    border-radius: 3px;
}

@media (min-width: 601px) {
    .o-block-vertical-list-view__section {
        display: flex;
        padding: 30px 0;
    }
}

.o-block-vertical-list-view__featured-image {
    display: block;
    max-width: 100%;
    margin-bottom: 15px;
    flex-shrink: 0;
}

@media (min-width: 601px) {
    .o-block-vertical-list-view__featured-image {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .o-block-vertical-list-view__featured-image img {
        width: 174px;
    }
}

.o-block-vertical-list-view__content {
    flex-grow: 1;
}

@media (min-width: 601px) {
    .o-block-vertical-list-view__content {
        display: flex;
        justify-content: space-between;
    }
}

.o-block-vertical-list-view__summary {
    flex-grow: 1;
}

.o-block-vertical-list-view__footer {
    padding-top: 20px;
}

@media (min-width: 601px) {
    .o-block-vertical-list-view__summary,
    .o-block-vertical-list-view__footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Post navigation */
.c-post-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

/* ====================================
   TEXT / CONTENT AREA
   ==================================== */

.o-text {
    width: 100%;
    margin: 0 auto;
}

.o-text > p,
.o-text > h1,
.o-text > h2,
.o-text > h3,
.o-text > h4,
.o-text > h5,
.o-text > h6,
.o-text > ol,
.o-text > ul,
.o-text > table,
.o-text > form,
.o-text > blockquote {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.o-text h1,
.o-text h2,
.o-text h3,
.o-text h4,
.o-text h5,
.o-text h6 {
    color: var(--color-primary);
}

.o-text > * + * {
    margin-top: 40px;
}

.o-text > p + p {
    margin-top: 20px;
}

/* WordPress content classes */
.wp-block-image {
    margin-top: 40px;
    margin-bottom: 40px;
}

.wp-block-image img {
    border-radius: 10px;
}

.o-text img,
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: var(--font-size-xxs);
    color: var(--color-text);
    padding-top: 5px;
}

/* ====================================
   UTILITY - COLORS
   ==================================== */

.u-color--black,
.u-color--black a { color: var(--color-black); }

.u-color--white,
.u-color--white p { color: #fff; }

.u-color--white a { color: #fff; }

.u-color--white-transparent { color: rgba(255, 255, 255, 0.7); }

.u-color--primary,
.u-color--primary a { color: var(--color-primary); }

.u-color--secondary,
.u-color--secondary a { color: var(--color-secondary); }

.u-color--tertiary,
.u-color--tertiary a { color: var(--color-tertiary); }

.u-background-color--none { background: none; }
.u-background-color--black { background-color: var(--color-black); }
.u-background-color--gray { background-color: var(--color-gray); }
.u-background-color--gray--light { background-color: var(--color-gray-light); }
.u-background-color--white { background-color: #fff; }
.u-background-color--primary { background-color: var(--color-primary); }
.u-background-color--secondary { background-color: var(--color-secondary); }
.u-background-color--tertiary { background-color: var(--color-tertiary); }

/* ====================================
   UTILITY - SPACING
   ==================================== */

.u-spacing > * + * { margin-top: 20px; }
.u-spacing--quarter > * + * { margin-top: 5px; }
.u-spacing--half > * + * { margin-top: 10px; }
.u-spacing--double > * + * { margin-top: 40px; }
.u-spacing--triple > * + * { margin-top: 60px; }
.u-spacing--zero > * + * { margin-top: 0; }

.u-padding { padding: 20px; }
.u-padding--top { padding-top: 40px; }
.u-padding--bottom { padding-bottom: 40px; }
.u-padding--left { padding-left: 20px; }
.u-padding--right { padding-right: 20px; }

.u-space { margin: 20px; }
.u-space--top { margin-top: 20px; }
.u-space--bottom { margin-bottom: 20px; }

/* ====================================
   UTILITY - DISPLAY
   ==================================== */

.u-display--inline-block { display: inline-block; }
.u-display--block { display: block; }
.u-flex { display: flex; }

/* ====================================
   UTILITY - TEXT
   ==================================== */

.u-font { font-family: var(--font-primary); }
.u-font--primary { font-family: var(--font-primary); }
.u-font--secondary { font-family: var(--font-secondary); }

.u-font--xs { font-size: var(--font-size-xs); }
.u-font--s { font-size: var(--font-size-s); }
.u-font--m { font-size: var(--font-size-m); }
.u-font--l { font-size: var(--font-size-l); }
.u-font--xl { font-size: var(--font-size-xl); }
.u-font--xxl { font-size: var(--font-size-xxl); }

.u-text-transform--upper { text-transform: uppercase; }
.u-text-transform--lower { text-transform: lowercase; }
.u-text-transform--capitalize { text-transform: capitalize; }
.u-text-transform--none { text-transform: none; }

.u-text-style--italic { font-style: italic; }
.u-text-decoration--underline { text-decoration: underline; }
.u-letter-spacing--normal { letter-spacing: normal; }

.u-font-weight--normal { font-weight: normal; }
.u-font-weight--regular { font-weight: 400; }
.u-font-weight--bold { font-weight: 700; }

.u-text-align--center { text-align: center; }
.u-text-align--left { text-align: left; }
.u-text-align--right { text-align: right; }

/* ====================================
   UTILITY - SVG FILLS
   ==================================== */

.u-path-fill--white path { fill: #fff; }
.u-path-fill--primary path { fill: var(--color-primary); }
.u-path-fill--secondary path { fill: var(--color-secondary); }
.u-path-fill--tertiary path { fill: var(--color-tertiary); }

/* ====================================
   FRONT PAGE - IMAGE BLOCK
   ==================================== */

.c-image-block {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.c-image-block > * {
    width: 50%;
}

.c-image-block--top {
    flex-direction: row-reverse;
    background-image: none;
}

.c-image-block--top .c-image-block__image {
    left: 0;
}

.c-image-block__image-wrap {
    position: relative;
    filter: drop-shadow(2px 6px 6px rgba(50, 50, 0, 0.4));
}

.c-image-block__image {
    overflow: hidden;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%, 25% 0%);
    width: 80vw;
    height: 65vw;
    top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    margin: auto 0;
}

@media (min-width: 901px) {
    .c-image-block__image {
        width: 60vw;
        height: 50vw;
        max-width: 810px;
        max-height: 700px;
    }
}

.c-image-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.c-image-block--top {
    min-height: 400px;
    overflow: visible;
}

@media (min-width: 901px) {
    .c-image-block--top {
        min-height: 500px;
    }
}

.c-image-block__info {
    padding: 40px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 901px) {
    .c-image-block__info {
        max-width: 800px;
        padding: 60px 40px;
    }
}

.c-image-block__title {
    line-height: 1.1;
}

.c-image-block__intro {
    line-height: 1.4;
}

.u-spacing--and-half > * + * {
    margin-top: 30px;
}

@media (max-width: 600px) {
    .c-image-block {
        flex-direction: column;
    }

    .c-image-block > * {
        width: 100%;
    }

    .c-image-block--top {
        flex-direction: column;
        min-height: auto;
    }

    .c-image-block__image {
        position: relative;
        width: 100%;
        height: auto;
        clip-path: none;
    }

    .c-image-block__image-wrap {
        filter: none;
    }
}

/* ====================================
   FRONT PAGE - CTA BLOCKS
   ==================================== */

.c-cta-blocks {
    display: flex;
    position: relative;
    align-items: stretch;
    justify-content: center;
}

.c-cta-blocks__link {
    width: 50%;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

@media (min-width: 901px) {
    .c-cta-blocks__link {
        padding: 80px 40px;
    }
}

.c-cta-blocks__link:first-child {
    background-color: var(--color-secondary);
}

.c-cta-blocks__link:first-child:hover,
.c-cta-blocks__link:first-child:active {
    background-color: #6a3;
}

.c-cta-blocks__link:last-child {
    background-color: var(--color-tertiary);
}

.c-cta-blocks__link:last-child:hover,
.c-cta-blocks__link:last-child:active {
    background-color: #dab053;
}

.c-cta-blocks__content {
    max-width: 600px;
    margin: auto;
}

.c-cta-blocks__icon {
    color: #fff;
    line-height: 0;
    margin-bottom: 4px;
}

.c-cta-blocks__link h4 {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--font-size-xs);
}

.c-cta-blocks__link h2 {
    color: #fff;
}

@media (max-width: 600px) {
    .c-cta-blocks {
        flex-direction: column;
    }

    .c-cta-blocks__link {
        width: 100%;
    }
}

/* ====================================
   FRONT PAGE - NEWS LIST
   ==================================== */

.home .l-main {
    padding-bottom: 0;
    margin-bottom: 0;
}

.home .l-main > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.home .l-content {
    padding-bottom: 0;
    margin-bottom: 0;
}

.o-block-horizontal-list-view {
    padding: 40px 0;
}

.o-block-horizontal-list-view__heading h1 {
    font-size: var(--font-size-xl);
    margin-bottom: 20px;
}

.o-block-horizontal-list-view__article {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.o-block-horizontal-list-view__section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.o-block-horizontal-list-view__featured-image {
    margin: 0;
}

.o-block-horizontal-list-view__featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.o-block-horizontal-list-view__section h2 {
    font-size: var(--font-size-m);
    line-height: 1.3;
}

.o-block-horizontal-list-view__section h2 a {
    color: var(--color-black);
    text-decoration: none;
}

.o-block-horizontal-list-view__section h2 a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .o-block-horizontal-list-view__article {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   DONATE PAGE
   ==================================== */

.c-donate {
    margin-top: 40px;
    margin-bottom: 40px;
}

.c-donate__box {
    background: var(--color-gray-light);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.c-donate__heading {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.c-donate__text {
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

#donate-button-container {
    margin-bottom: 16px;
}

.c-donate__secure {
    font-size: 13px;
    color: #999;
}

/* ====================================
   CLINIC FINDER
   ==================================== */

.c-clinic-finder {
    min-height: 500px;
}

/* ====================================
   WORDPRESS DEFAULTS
   ==================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ====================================
   PRINT STYLES
   ==================================== */

@media print {
    body {
        font-size: 12px;
        line-height: 1.3;
    }

    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    .no-print,
    .c-header,
    .c-footer {
        display: none;
    }

    img {
        max-width: 100% !important;
    }
}

/* ====================================
   FAQ PAGE
   ==================================== */

.l-article {
    grid-template-columns: 1fr;
    gap: 30px;
    display: grid;
}

@media (min-width: 800px) {
    .l-article {
        grid-template-columns: 280px 1fr;
    }
}

.l-article__sidebar {
    position: relative;
}

.l-article__body {
    min-width: 0;
}

.l-page__faqs {
    padding: 0 20px;
}

.c-block-nav {
    text-align: center;
    margin-bottom: 40px;
}

.c-block-nav__cards {
    justify-content: center;
    gap: 20px;
    display: flex;
}

.c-block-nav__card {
    border: 2px solid var(--color-gray);
    border-radius: 12px;
    padding: 30px 40px;
    text-decoration: none;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    transition: background-color .2s, border-color .2s, color .2s, box-shadow .2s;
}

.c-block-nav__card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.c-block-nav__card.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.c-block-nav__card-icon {
    width: 36px;
    height: 36px;
    display: block;
}

.c-block-nav__card-icon svg {
    width: 100%;
    height: 100%;
}

.c-block-nav__card-label {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
}

.c-questions {
    position: sticky;
    top: 120px;
}

.c-questions__list {
    margin: 0;
    padding: 0;
    list-style: none;
    transition: opacity 200ms ease;
}

.c-questions__list-link {
    border-bottom: 1px solid var(--color-gray);
    color: var(--color-text);
    padding: 10px 0;
    font-size: 14px;
    text-decoration: none;
    display: block;
}

.c-questions__list-link:hover,
.c-questions__list-link.is-active {
    color: var(--color-primary);
}

.c-questions__nav {
    justify-content: space-between;
    margin-top: 20px;
    display: flex;
}

.c-questions__nav-link {
    border: 1px solid var(--color-gray);
    cursor: pointer;
    color: var(--color-text);
    background: none;
    border-radius: 4px;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 13px;
    display: inline-flex;
    text-decoration: none;
}

.c-questions__nav-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.c-answers {
    transition: opacity 200ms ease;
}

.c-answers__item {
    border-bottom: 3px solid var(--color-tertiary);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.c-answers__item h3 {
    color: var(--color-black);
    margin-bottom: 12px;
}

/* Primary-nav dropdown: submenu hidden by default, shown on hover at desktop. */
.c-primary-nav__sublist {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
    display: none;
}

.c-primary-nav__sublist.is-open {
    display: block;
}

@media (min-width: 901px) {
    .c-primary-nav__list-item:has(> .c-primary-nav__sublist) {
        position: relative;
    }

    .c-primary-nav__sublist {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(35, 31, 32, 0.15);
        min-width: 220px;
        padding: 10px 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
    }

    .c-primary-nav__list-item:hover > .c-primary-nav__sublist {
        display: block;
    }

    .c-primary-nav__sublist .c-primary-nav__list-item {
        display: block;
        width: 100%;
    }

    .c-primary-nav__sublist .c-primary-nav__link {
        font-size: var(--font-size-xs);
        text-transform: none;
        white-space: normal;
        padding: 10px 20px;
        margin: 0;
        color: var(--color-text);
        display: block;
    }

    .c-primary-nav__sublist .c-primary-nav__link:hover {
        color: var(--color-primary);
        background: var(--color-gray-light);
    }

    /* Suppress the parent nav's yellow underline pseudo-element inside the dropdown */
    .c-primary-nav__sublist .c-primary-nav__link::after,
    .c-primary-nav__sublist .c-primary-nav__link:hover::after,
    .c-primary-nav__sublist .c-primary-nav__link:active::after {
        content: none;
        display: none;
        background: transparent;
        width: 0;
    }

    /* Caret indicator on items that have a dropdown */
    .c-primary-nav__list-item:has(> .c-primary-nav__sublist) > .c-primary-nav__link {
        padding-right: 16px;
        position: relative;
    }

    .c-primary-nav__list-item:has(> .c-primary-nav__sublist) > .c-primary-nav__link::before {
        content: "";
        width: 6px;
        height: 6px;
        border-bottom: 2px solid currentColor;
        border-right: 2px solid currentColor;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-60%) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .c-primary-nav__list-item:hover > .c-primary-nav__link::before {
        transform: translateY(-40%) rotate(-135deg);
    }
}

/* Add Your Clinic CTA: rendered as a teal pill button in the primary nav. */
@media (min-width: 901px) {
    .c-primary-nav .c-primary-nav__list-item.is-nav-cta .c-primary-nav__link {
        background: var(--color-primary);
        color: #fff;
        border-radius: 50px;
        padding: 8px 18px;
        margin-left: 12px;
    }

    .c-primary-nav .c-primary-nav__list-item.is-nav-cta .c-primary-nav__link:hover,
    .c-primary-nav .c-primary-nav__list-item.is-nav-cta .c-primary-nav__link:active {
        background: var(--color-secondary);
        color: #fff;
    }

    /* Suppress the parent nav's yellow underline on the CTA button */
    .c-primary-nav .c-primary-nav__list-item.is-nav-cta .c-primary-nav__link::after {
        content: none;
        display: none;
    }

    /* Don't render the dropdown caret on the CTA button (no submenu) */
    .c-primary-nav .c-primary-nav__list-item.is-nav-cta .c-primary-nav__link::before {
        display: none;
    }
}
