/* ═══════════════════════════════════════
   Single Program Page
   ═══════════════════════════════════════ */

/* ── Hero ── */
.program-hero {
    position: relative;
    min-height: 400px;
    background: url('../images/hero-default.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 5%;
}

.program-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

/* ── Sticky Title ── */
.program-sticky-title {
    z-index: 100;
    background: #303030;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.program-sticky-title.is-stuck {
    position: fixed;
    left: 0;
    right: 0;
}

.program-sticky-title__inner {
    margin: 0 auto;
    padding: 20px 5% 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.2s ease;
}

.program-sticky-title.is-stuck .program-sticky-title__inner {
    padding: 14px 5%;
}

.program-sticky-title__label {
    display: block;
    color: #f0c040;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
    overflow: hidden;
    max-height: 30px;
    opacity: 1;
}

.program-sticky-title.is-stuck .program-sticky-title__label {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.program-sticky-title__text {
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    transition: font-size 0.2s ease, font-weight 0.2s ease;
}

.program-sticky-title.is-stuck .program-sticky-title__text {
    font-size: 22px;
    font-weight: 700;
}

.program-sticky-title__cta {
    background-image: linear-gradient(90deg, #2e5b96, #52a5da);
    background-color: #2e5b96;
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.program-sticky-title__cta:hover {
    opacity: 0.85;
    color: #fff;
}

/* ── Main Two-Column Layout ── */
.program-main {
    margin: 0 auto;
    padding: 56px 5%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/*
 * Stable “wide” program layout: inner max-width caps the row; the main column is always
 * the same grid track (1fr). Images/iframes/tables cannot grow the track past 100% — they
 * scale or scroll inside the column so every tab matches width.
 */
.program-main__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 50px;
    align-items: start;
    width: 100%;
    max-width: min(100%, 1420px);
    margin-inline: auto;
    box-sizing: border-box;
}

.program-main__left {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Rich content: never let media or tables widen the grid column */
.program-main__left :where(img, iframe, video, embed, object, svg) {
    max-width: 100%;
    height: auto;
}

.program-main__left :where(table) {
    max-width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.program-main__left :where(.wp-block-embed, .wp-block-image) {
    max-width: 100%;
}

.program-main__left .alignwide,
.program-main__left .alignfull {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.program-main__right {
    width: 100%;
    max-width: 380px;
    justify-self: end;
}

.program-tabs {
    width: 100%;
    min-width: 0;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Panel stack: inactive panels stay full-width (off-flow) so layout never follows narrow tab content */
.program-tabs__panels {
    position: relative;
    width: 100%;
    min-width: 0;
}

.program-tabs__embed--calendar {
    width: 100%;
    min-width: 0;
    overflow: visible;
}

/* Calendar vendors default to a short iframe height; give a full month + controls room */
.program-tabs__embed--calendar iframe {
    display: block;
    max-width: 100%;
    width: 100%;
    height: clamp(620px, 82vh, 1040px);
    border: 0;
}

/* ── Overview ── */
.program-overview {
    margin-bottom: 40px;
}

/* Match tab panel body copy exactly: same px values, covers p/div/li
   since WYSIWYG output can wrap text in any block element. */
.program-overview,
.program-overview p,
.program-overview div,
.program-overview li {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.program-overview__heading {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.program-overview__schedule-note {
    margin-top: 1.25em;
    font-size: 1em;
    line-height: 1.55;
}

/* ── Tabs ── */
.program-tabs__nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    gap: 5px;
}

.program-tabs__nav li {
    list-style: none;
    margin: 0;
    padding: 0;
    
}

body button.program-tabs__btn {
    background-image: linear-gradient(45deg, #ffffff 55%, var(--dkhero) 75%, var(--blue)100%);
    background-size: 200%;
    background-position-x: 0%;
    border: 1px solid var(--gray);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all .3s ease-in-out!important;
    border-radius: 30px!important;
    font-family: 'Montserrat';
}


body .program-tabs__btn:hover {
    color: #ffff;
    background-image: linear-gradient(45deg, #ffffff 55%, var(--dkhero) 75%, var(--blue)100%);
    background-position-x: -50%;
    background-size: 300%;
}

.program-tabs__panel {
    padding: 12px 0 32px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
}

body .program-tabs__btn.is-active {
    color: #fff;
    background-image: linear-gradient(45deg, #ffffff 55%, var(--dkhero) 75%, var(--blue)100%)!important;
    border-color: #ffffff;
    background-position-x: -50%;
    background-size: 300%;
}

body .program-tabs__btn.is-active:hover{
    background-image: linear-gradient(45deg, #ffffff 55%, var(--dkhero) 75%, var(--blue)100%);
}

.program-tabs__panel.is-active {
    position: relative;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.program-tabs__field {
    margin: 0 0 24px;
    padding: 0 0 24px;
    border-bottom: 1px solid #e0e0e0;
}

.program-tabs__field:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Tab section titles — caps/weight like Quick Overview labels; color uses brand dark blue */
body .program-tabs__field-label,
body .program-tabs__panel :where(h1, h2, h3, h4, h5):not(.program-tabs__btn) {
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--blue, #2e5b96);
    margin: 0 0 10px;
    line-height: 1.3;
}

body .program-tabs__panel :where(h1, h2, h3, h4, h5) a {
    color: #0073e6;
}

/* Body copy inside tabs (WYSIWYG + plain fields) */
.program-tabs__panel :where(p) {
    margin: 0 0 1em;
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    color: inherit;
}

.program-tabs__panel :where(p:last-child) {
    margin-bottom: 0;
}

.program-tabs__panel :where(ul, ol) {
    margin: 0 0 1em;
    padding-left: 1.25em;
}

.program-tabs__panel :where(ul:last-child, ol:last-child) {
    margin-bottom: 0;
}

.program-tabs__panel :where(li) {
    margin-bottom: 0.35em;
}

.program-tabs__panel :where(strong, b) {
    font-weight: 600;
}

.program-tabs__panel a {
    color: #0073e6;
    font-weight: 500;
    text-decoration: underline;
}

.program-tabs__panel a:hover {
    color: #005bb5;
}

.program-tabs__field :where(img, .program-scholarship-chart) {
    margin-top: 12px;
}

/* ── Sidebar Gray Box ── */
.program-sidebar {
    background-image: linear-gradient(180deg, #385fa2, #3e4b69);
    border-radius: 30px;
    padding: 40px 30px;
    position: sticky;
    top: 80px;
    color: #fff;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.program-sidebar:after {
    content: none;
    position: absolute;
    right: -60px;
    bottom: 40%;
    transform: rotate(90deg);
    background-repeat: no-repeat;
    width: 100%;
    height: 50%;
    background-size: cover;
    opacity: .5;
    z-index: 0;
}

.program-sidebar__row {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.program-sidebar__row:last-of-type {
    border-bottom: none;
}

.program-sidebar__label {
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    color: #d9be5b;
    margin-bottom: 4px;
    font-weight: 600;
}

.program-sidebar__value {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.program-sidebar__value a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.program-sidebar__value a:hover {
    text-decoration: underline;
}

.program-sidebar__coach-photo {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    margin-bottom: 12px;
}

.program-sidebar__coach-text {
    display: block;
    line-height: 1.6;
}

.program-sidebar__coach-text a {
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
}

.program-sidebar__coach-text a:hover {
    text-decoration: underline;
}

.program-sidebar__cta {
    margin-top: 24px;
}

.program-sidebar__register-btn {
    display: block;
    text-align: center;
    background-image: linear-gradient(90deg, #2e5b96, #52a5da);
    background-color: #2e5b96;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.program-sidebar__register-btn:hover {
    opacity: 0.85;
    color: #fff;
}

/* ── My SSWSC (CampMinder) compact login — Quick Overview ── */
.program-sidebar__coach-contact:has(+ .program-sidebar__campminder) {
    border-bottom: none;
    padding-bottom: 8px;
}

.program-sidebar__campminder {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.program-sidebar__campminder-inner {
    width: 100%;
}

/* Match coach / value copy in the same box */
.program-sidebar__campminder-intro {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
}

.program-sidebar__campminder-field {
    margin: 0 0 14px;
}

/* Gold caps labels: between row headings (20px) and WP sidebar login (12px) */
.program-sidebar__campminder-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #d9be5b;
    margin-bottom: 6px;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.program-sidebar__campminder-form input[type="email"],
.program-sidebar__campminder-form input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: rgba(18, 32, 58, 0.72);
    color: #fff;
    box-sizing: border-box;
}

.program-sidebar__campminder-form input[type="email"]::placeholder,
.program-sidebar__campminder-form input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.program-sidebar__campminder-form input[type="email"]:focus,
.program-sidebar__campminder-form input[type="password"]:focus {
    border-color: #69c5ff;
    outline: none;
    background: rgba(18, 32, 58, 0.88);
}

.program-sidebar__campminder-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin: 4px 0 0;
}

/* Match Register Now CTA */
.program-sidebar__campminder-submit {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 12px 20px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.program-sidebar__campminder-submit:hover {
    background: #005bb5;
}

.program-sidebar__campminder-forgot {
    font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
}

.program-sidebar__campminder-forgot:hover {
    text-decoration: underline;
}

.program-sidebar__heading {
    font-size: 1.75rem;
    text-transform: uppercase;
    color: #69c5ff;
    margin: 24px 0 12px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif !important;
}

.program-sidebar__heading:first-child {
    margin-top: 0;
}

.program-sidebar__links,
.program-sidebar__links li {
    list-style: none !important;
    margin: 0;
    padding: 0;
    z-index: 9;
    position: relative;
}

.program-sidebar__links li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.program-sidebar__links li:last-child {
    border-bottom: none;
}

.program-sidebar__links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.program-sidebar__links a:hover {
    text-decoration: underline;
}

/* ── SMS Partnership (sidebar) ── */
.program-sms-info--sidebar {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    line-height: 1.5;
}

.program-sms-info--sidebar a {
    color: #90caed;
    text-decoration: underline;
}

.program-sms-info--sidebar a:hover {
    color: #ffffff;
}

/* ── Scholarship Chart Images ── */
.program-scholarship-chart {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ── Sidebar Login Form ── */
.program-sidebar__login {
    position: relative;
    z-index: 1;
}

.program-sidebar__login .login-username,
.program-sidebar__login .login-password {
    margin-bottom: 12px;
}

.program-sidebar__login label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #d9be5b;
    margin-bottom: 4px;
}

.program-sidebar__login input[type="text"],
.program-sidebar__login input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    box-sizing: border-box;
}

.program-sidebar__login input[type="text"]::placeholder,
.program-sidebar__login input[type="password"]::placeholder {
    color: rgba(255,255,255,0.5);
}

.program-sidebar__login input[type="text"]:focus,
.program-sidebar__login input[type="password"]:focus {
    border-color: #69c5ff;
    outline: none;
    background: rgba(255,255,255,0.15);
}

.program-sidebar__login .login-remember {
    margin-bottom: 12px;
    font-size: 13px;
}

.program-sidebar__login .login-remember label {
    display: inline;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
    font-weight: 400;
}

.program-sidebar__login input[type="submit"] {
    width: 100%;
    padding: 12px 24px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.program-sidebar__login input[type="submit"]:hover {
    background: #005bb5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .program-hero {
        min-height: 300px;
        padding: 40px 5%;
    }

    .program-main__inner {
        grid-template-columns: 1fr;
    }

    .program-main__right {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .program-sidebar {
        position: static;
    }

    .program-tabs__nav {
        overflow-x: auto;
    }

    .program-tabs__btn {
        white-space: nowrap;
        padding: 12px 16px;
        font-size: 14px;
    }
}


/* ── Card sizing normalization (applies everywhere cards render) ── */
/* Equalize grid rows, card column, title reserved height, actions pinned to bottom. */
.sswsc-programs-grid {
    grid-auto-rows: 1fr;
}

.sswsc-program-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sswsc-program-card .program-title {
    line-height: 35px;
    /* Reserve space for 2 lines + padding; longer titles expand naturally */
    min-height: calc(2 * 35px + 28px);
    box-sizing: border-box;
}

.sswsc-program-card .program-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sswsc-program-card .program-actions {
    margin-top: auto;
}


/* ── Pre-footer: Complementary + Related Programs ── */
.program-also {
    padding: 50px 5% 60px;
    background: #f3f7fd;
    border-top: 1px solid #dbe7f4;
}

.program-also__inner {
    width: 100%;
    max-width: min(100%, 1420px);
    margin-inline: auto;
    box-sizing: border-box;
}

.program-also__group + .program-also__group {
    margin-top: 40px;
}

.program-also__heading {
    font-size: 1.85rem;
    line-height: 1.2;
    margin: 0 0 28px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .program-also {
        padding: 36px 5% 48px;
    }

    .program-also__heading {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .program-also__group + .program-also__group {
        margin-top: 40px;
    }
}


/* PROGRAMS LIST VIEW PAGE */
body {
	& .programs-archive-header h1 {
	    font-size: 2.75rem;
	    line-height: 1.3em;
	    margin-bottom: 10px;
	    color: var(--blue);
	    background-image: linear-gradient(to right, var(--hero) 0%, var(--blue) 100%);
	    background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	& .programs-archive-header {
	    margin-bottom: 36px;
	    text-align: left;
	    margin-top: 0;
   	}
	
	& .sswsc-finder-form {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 15px;
	    align-items: flex-end;
	    padding: 27px 40px 11px;
	    background: #deedfd;
	    border-radius: 30px;
	    margin-bottom: 20px;
	}
	
	& .sswsc-finder-field .select2-container--default .select2-selection--multiple {
	    border: 1px solid #ddd;
	    border-radius: 24px;
	    padding: 6px 11px 4px;
	    min-height: 42px;
	}

	& .sswsc-finder-field .select2-container--default .select2-selection--multiple:has(.select2-selection__choice) {
	    padding-top: 3px;
	}
	
	& .sswsc-finder-field label {
	    font-weight: 600;
	    font-size: 1.15rem;
	    color: #1b4c76;
	    margin-bottom: 7px;
	}
	
	& .sswsc-finder-clear-all {
	    display: none;
	    font-size: 14px;
	    color: var(--blue);
	    cursor: pointer;
	    text-decoration: underline;
	    margin-top: 0px;
	    font-weight: 600;
	    margin-left: 18px;
	    position: absolute;
	    bottom: -8px;
	    left: 0;
	}

	& .sswsc-finder-filters .sswsc-finder-field {
	    flex: 1 1 200px;
	    position: relative;
	    padding-bottom: 22px;
	}
	
	& .sswsc-finder-field .select2-container--default .select2-selection--multiple .select2-selection__choice {
	    background: var(--blue);
	    color: #fff;
	    border: none;
	    border-radius: 20px;
	    padding: 5px 14px 5px 12px;
	    margin: 2px 4px 4px 0;
	    font-size: 0.8rem;
	    font-weight: 700;
	}
	
	& .sswsc-finder-birthday .sswsc-birthday-input {
	    width: 100%;
	    border: 1px solid #ddd;
	    border-radius: 34px;
	    padding: 8px 12px 8px 20px;
	    min-height: 42px;
	    font-size: 14px;
	    box-sizing: border-box;
	    background: #ffff;
	}
	
	& .sswsc-type-card {
	    display: block;
	    text-decoration: none;
	    border-radius: 30px;
	    overflow: hidden;
	    transition: transform 0.3s, box-shadow 0.3s;
	}
	
	& .sswsc-type-card__title {
	    margin: 0!important;
	    color: #fff;
	    font-size: 1.8rem;
	    font-weight: 600;
	    line-height: 1em;
	    padding-bottom: 3px;
	}

	& .sswsc-type-card__overlay {
	    position: absolute;
	    inset: 0;
	    background: linear-gradient(to top, rgb(46 91 150) 10%, rgb(46 91 150 / 32%) 60%, rgb(46 91 150 / 20%) 100%);
	    transition: background 0.8s ease-in-out;
	}
	
	& a.sswsc-type-card:hover .sswsc-type-card__overlay {
	    background: linear-gradient(to top, rgb(46 91 150) 24%, rgb(46 91 150 / 32%) 85%, rgb(46 91 150 / 20%) 100%);
	}
	
	& .sswsc-type-card__count {
	    color: #d9be5b;
	    font-size: 1.125rem;
	    font-weight: 600;
	    margin-top: 9px;
	}
	
	& .sswsc-program-card .program-title {
	    margin: 0 0 0px;
	    margin-bottom: 10px!important;
	    padding: 14px 20px;
	    background-image: linear-gradient(90deg, #2e5b96 30%, #26a9e0 100%);
	}
	
	& .sswsc-program-card .program-title a {
	    color: #ffffff;
	    text-decoration: none;
	    font-weight: 700;
	    font-size: 1.65rem;
	    font-family: "Montserrat", sans-serif!important;
	    text-transform: uppercase;
        line-height: 35px;
	}
	
	& .sswsc-program-card .program-title a:hover {
	    opacity: .8;
	    color: #ffffff;
	}
	
	& .sswsc-program-card {
	    background: #fff;
	    border-radius: 30px;
	    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	    overflow: hidden;
	    transition: transform 0.2s, box-shadow 0.2s;
	}
	
	& .sswsc-program-card .program-ages, .sswsc-program-card .program-type {
	    font-size: 1rem;
	    color: #333333;
	    margin-bottom: 0px;
	    padding-left: 20px;
	    padding-top: 6px;
	}
		
	& .sswsc-program-card .program-ages .label, .sswsc-program-card .program-type .label {
	    font-weight: 900;
	    margin-right: 5px;
	}
	
	& .sswsc-finder-filters .sswsc-finder-submit {
	    flex: 0 0 100%;
	    padding-bottom: 20px;
	    padding-top: 9px;
	}
	
	& .sswsc-program-card .program-content {
	    padding: 0 0 24px;
	}

	& .sswsc-program-card a.btn.btn-secondary {
	    margin-left: 20px!important;
	}
	
	& .sswsc-finder-results-count {
	    font-size: 2rem;
	    color: var(--dkgray);
	    margin: 0px;
	}
	
	& .sswsc-finder-results-header {
	    margin-bottom: 20px;
	    padding-bottom: 20px;
	    border-bottom: 1px solid #52a5da;
	    padding-top: 20px;
	}

	@media (max-width: 768px) {
		& .sswsc-finder-form {
			padding: 20px 20px 8px;
			gap: 10px;
		}

		& .sswsc-finder-filters .sswsc-finder-field {
			flex: 1 1 100%;
			padding-bottom: 14px;
		}

		& .sswsc-finder-field label {
			font-size: 1rem;
			margin-bottom: 5px;
		}

		& .sswsc-finder-filters .sswsc-finder-submit {
			padding-bottom: 12px;
		}
	}
}
