/* Inter @import removed — duplicate of the <link> request that Content.aspx
   and ProtectedPage.master already make. @import inside a stylesheet is the
   worst-case for perf since it serializes the font fetch behind Styles.css. */

/* ============================================================
   CSS VARIABLES / ROOT
   ============================================================ */

:root {
    /* Brand tokens — shared with header/footer scoped styles */
    --red: #a11e23;
    --dark-red: #7a1519;
    --black: #1A1A1A;
    --cream: #F5F3EE;
    --gray: #6B6B6B;
    --border: rgba(0,0,0,0.07);

    /* Legacy aliases kept for backward compat */
    --font-base: 'Inter', sans-serif;
    --font-alt: 'Arial', sans-serif;
    --base-font-size: 15px;
    --color-white: #ffffff;
    --color-black: #1A1A1A;
    --color-text: #1A1A1A;
    --color-primary-green: #a11e23;
    --color-secondary-green: #7a1519;
    --transition-speed: 0.3s;
    --border-radius: 4px;
    --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.07);
}


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

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--cream);
    color: var(--black);
    font-family: var(--font-base);
    font-size: var(--base-font-size);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
}

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

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

a img {
    border: none;
}

video {
    max-width: 100%;
}

.content {
    background: var(--cream);
    padding-bottom: 0;
}

/* Images inside CMS content panels */
#ucContentPage_pnlLeftWindowControls img,
#ucContentPage_pnlRightWindowControls img,
#ucContentPage_pnlControls img {
    max-width: 100%;
}

/* Attribute selector: fix inline background-color:Silver (CMS admin helper) */
[style="background-color:Silver;"] {
    padding: 0;
}


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

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin: 0;
    font-weight: 600;
}

.page-header-inner {
    /* max-width / margin / padding handled by --shell-gutter (Custom.css) */
    position: relative;
    z-index: 2;
}

/* Error message */
.errormsg {
    font-weight: bold;
    color: red;
}

/* Image float alignment helpers (CMS text window) */
.imagealign_left {
    float: left;
    padding: 0 1em 5px 0;
}

.imagealign_center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.imagealign_right {
    float: right;
    padding: 0 0 5px 1em;
}

/* Ordered & Unordered list display fix (Froala editor) */
ul[style*="box-sizing: border-box;"],
ol[style*="box-sizing: border-box;"] {
    display: flex;
    flex-direction: column;
}

/* Image margin helpers for floated images in CMS content */
.component_container_textwindow img[style*='float: left'],
.textwindow_text img[style*='float: left'],
#isPasted img[style*='float: left'],
#lblNewsContent img[style*='float: left'],
img[style*="float: left"][fr-original-class*="fr-draggable"],
img[style*="float: left"][class*="fr-draggable"] {
    margin-right: 1em !important;
}

.component_container_textwindow img[style*='float: right'],
.textwindow_text img[style*='float: right'],
#isPasted img[style*='float: right'],
#lblNewsContent img[style*='float: right'],
img[style*="float: right"][fr-original-class*="fr-draggable"],
img[style*="float: right"][class*="fr-draggable"] {
    margin-left: 1em !important;
}


/* ============================================================
   LAYOUT & PAGE SHELL
   ============================================================ */

/* ===== INTERIOR WRAPPER — two-column grid ===== */
.interior-wrapper {
    padding-block: 70px 120px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: start;
    background: var(--cream);
}

/* Full-width wrapper for protected pages (no left nav) */
.protected-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 60px 100px;
    background: var(--cream);
}

/* Reset Bootstrap col-* floats/widths for grid children */
.interior-wrapper > * {
    float: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
    min-width: 0;
}

/* Sidebar column — sticky, transparent */
.interior-wrapper > span[id$="ucLeftNav_pnlLeftSide"],
#ucLeftNav_pnlLeftSide {
    position: sticky;
    top: 105px;
    align-self: start;
    background: transparent;
    border: none;
    padding: 0;
    overflow: visible;
}

/* Content panels */
#ucContentPage_pnlControls,
#ucContentPage_dualWindow {
    background: none;
    border: none;
    padding: 0;
    min-width: 0;
}

/* Component container */
.divComponentContainer {
    margin: auto 0 16px 0;
}

.divComponentContainer::after {
    content: "";
    display: table;
    clear: both;
}

/* Spacing between stacked components */
.divComponentContainer + .divComponentContainer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.07);
}

/* jQuery UI helper reset */
.ui-helper-reset {
    padding: 15px !important;
    margin: 0 !important;
}

/* Google search input overrides */
input.gsc-search-button-v2 {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

input.gsc-input {
    font-size: 14px !important;
    Color: Black !important;
}


/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

/* Note: The bulk of header/nav styles live in ucHeader.ascx <style> block
   (scoped to that component). The rules below are global overrides. */

/* School closings alert banner */
#closings1_divAlertBanner,
#closings1_divMinimizedBanner {
    position: relative;
    z-index: 2;
    background: black;
}

.divAlertBannerText {
    color: #fff !important;
}

/* School closings text */
.schoolclosings_titletext {
    font-size: 1.286em;
    font-weight: 500;
    color: var(--color-white);
}

.schoolclosings_maintext {
    font-size: 1em;
    font-weight: normal;
    color: var(--color-white);
}

/* Google Translate widget overrides */
.goog-te-gadget {
    color: inherit !important;
}

.goog-te-gadget-simple {
    background: #0000 !important;
    border: none !important;
    font-size: 19.125px !important;
    display: inline-block;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    color: inherit;
    font-weight: 500;
    font-family: "poppins", Sans-Serif;
}

/* ShareThis widget overrides */
#sthoverbuttons #sthoverbuttonsMain {
    padding: 0px !important;
}

#sthoverbuttons .sthoverbuttons-label {
    margin-left: -4px !important;
}

.sthoverbuttons-chicklets {
    margin-left: -8px !important;
}


/* ============================================================
   HOMEPAGE
   ============================================================ */

/* Note: Homepage-specific section styles live in ucHomepage.ascx <style> block.
   The rules below are legacy/global homepage styles. */

/* Sticky sidebar nav (legacy — hidden on modern layout) */
.StickyNavContainer {
    position: relative;
    z-index: 20;
}

.StickyNav {
    position: absolute;
    top: 60px;
}

.StickyNav a {
    float: left;
    clear: left;
    margin-bottom: 15px;
    background-color: #FAFAFA;
    border-radius: 100px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 15px;
    transition: padding 0.5s;
}

.StickyNav a:hover {
    padding-left: 50px;
    text-decoration: none;
}

.StickyNav .Icon {
    float: left;
    margin-right: 15px;
}

.StickyNav .Icon svg {
    color: #1F78FF;
    font-size: 36px;
}

.StickyNav .Text {
    font-family: "poppins", Sans-Serif;
    font-weight: 500;
    font-size: 1.1em;
    line-height: 19px;
    color: #1F78FF;
}

.StickyNav .SNCont {
    width: 150px;
}

/* ============================================================
   LEFT NAV
   ============================================================ */

/* DynamicNav — left sidebar navigation component */
.DynamicNav {
    width: 100%;
    font-family: 'Inter', sans-serif;
    margin-bottom: 32px;
}

/* Section header (lnkTopHome — "back to parent" link) */
.dyn-nav-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.dyn-nav-section-link,
.dyn-nav-section-link:visited {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--black) !important;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s;
}

.dyn-nav-section-link:hover {
    color: var(--red) !important;
    text-decoration: none;
}

/* Nav items list */
.dyn-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.dyn-nav-item {
    margin: 0;
    padding: 0;
}

/* Row wrapper — link + toggle button side by side */
.dyn-nav-item-row {
    display: flex;
    align-items: stretch;
}

/* Nav item link */
.dyn-nav-item-row > a {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    color: var(--black);
    font-weight: 400;
    font-size: 0.85rem;
    padding: 11px 14px;
    text-decoration: none;
    border-left: 2px solid transparent;
    margin-left: -1px;
    line-height: 1.4;
    transition: color 0.2s ease, border-color 0.2s ease,
                background 0.2s ease, padding-left 0.2s ease;
}

.dyn-nav-item-row > a:hover {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(161,30,35,0.04);
    padding-left: 18px;
    text-decoration: none;
}

/* Expand/collapse toggle button */
.dyn-nav-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: rgba(0,0,0,0.3);
    transition: color 0.2s ease, transform 0.2s ease;
}

.dyn-nav-toggle:hover {
    color: var(--red);
}

.dyn-nav-toggle svg {
    transform: rotate(-90deg);
    transition: transform 0.25s ease;
    pointer-events: none;
}

.dyn-nav-item.open > .dyn-nav-item-row > .dyn-nav-toggle svg {
    transform: rotate(0deg);
}

.dyn-nav-item.open > .dyn-nav-item-row > .dyn-nav-toggle {
    color: var(--red);
}

/* Active / current page
   Code-behind adds class="DynamicNav_currentpage" to the <li>
   and class="DynamicNav_currentpage_link" to the <a> */
.DynamicNav_currentpage .dyn-nav-item-row > a,
li.DynamicNav_currentpage .dyn-nav-item-row > a {
    color: var(--red) !important;
    border-left-color: var(--red) !important;
    font-weight: 500 !important;
    background: rgba(161,30,35,0.05) !important;
    padding-left: 18px !important;
}

/* Fallback — code-behind sets CssClass directly on the HyperLink */
a.DynamicNav_currentpage_link {
    color: var(--red) !important;
    border-left-color: var(--red) !important;
    font-weight: 500 !important;
    background: rgba(161,30,35,0.05) !important;
    padding-left: 18px !important;
}

/* Grandchild sublist — hidden until parent is .open */
.dyn-nav-sublist {
    list-style: none;
    margin: 0 0 0 14px;
    padding: 0;
    border-left: 1px dashed rgba(161,30,35,0.2);
    display: none;
    overflow: hidden;
}

.dyn-nav-item.open > .dyn-nav-sublist {
    display: block;
    margin-top: 2px;
    margin-bottom: 6px;
    animation: navSubOpen 0.2s ease;
}

@keyframes navSubOpen {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dyn-nav-subitem {
    margin: 0;
    padding: 0;
}

.dyn-nav-subitem > a {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
    padding: 7px 12px;
    text-decoration: none;
    font-weight: 300;
    line-height: 1.4;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.dyn-nav-subitem > a:hover {
    color: var(--red);
    padding-left: 16px;
    text-decoration: none;
}

/* Grandchild active — red text only, no padding shift so it stays in line
   with its sibling sub-items instead of "sticking out" to the right. */
.dyn-nav-subitem > a.DynamicNav_currentpage_link {
    color: var(--red) !important;
    font-weight: 500 !important;
}

/* Mobile show/hide (checkbox hack — preserved for compatibility) */
#show-menu {
    display: none;
}

#show-menu:checked ~ .dyn-nav-list,
#show-menu:checked ~ #menu {
    display: block !important;
}

.DynamicNav_show-menu::after {
    content: "Show Navigation ▼";
}

#show-menu:checked ~ .DynamicNav_show-menu::after {
    content: "Hide Navigation ▲";
}

.DynamicNav_show-menu {
    display: none;
    width: 100%;
    background: var(--black);
    color: #fff;
    border: none;
    border-bottom: 2px solid var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 14px;
    text-align: left;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 4px;
}

/* StaticLinks component (sidebar links widget) */
.dynamicnav_smalllink,
.dynamicnav_smalllink:visited {
    color: var(--black);
    font-size: 0.83rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.2s;
}

.dynamicnav_smalllink:hover {
    color: var(--red);
    text-decoration: none;
}

/* Suppress old table-based layout in StaticLinks */
#ucLeftNav_pnlLeftSide table {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    border-spacing: 0 !important;
    width: 100% !important;
}

#ucLeftNav_pnlLeftSide table td {
    padding: 4px 2px !important;
    border: none !important;
    background: transparent !important;
    vertical-align: middle !important;
}

/* Sidebar panel reset — pnlLeftSide can have background from CMS config */
#ucLeftNav_pnlLeftSide {
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
}

/* StaticText widget (renders free HTML) */
#ucLeftNav_pnlLeftSide span[id$="lblContent"] {
    display: block;
    margin-top: 28px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    position: relative;
    overflow: hidden;
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.7;
}

#ucLeftNav_pnlLeftSide span[id$="lblContent"]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
}

#ucLeftNav_pnlLeftSide span[id$="lblContent"] h4,
#ucLeftNav_pnlLeftSide span[id$="lblContent"] h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px;
}

#ucLeftNav_pnlLeftSide span[id$="lblContent"] a {
    font-size: 0.72rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

#ucLeftNav_pnlLeftSide span[id$="lblContent"] a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

/* DynamicNav ul nested list */
.DynamicNav ul li ul li {
    list-style-type: none;
}


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

/* Note: Footer layout/color/padding live in ucFooter.ascx <style> block.
   These rules are global overrides and legacy styles. */

footer {
    font-family: 'Inter', sans-serif;
}

footer .textwindow_text {
    line-height: 1.75;
}

/* ADA Compliance button */
.divCompliance a {
    font-size: 1em;
    font-family: Sans-Serif;
    color: white;
}

/* Legacy Bootstrap override in footer (new footer uses grid in scoped style) */
footer .col-md-4 {
    float: left;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
}

footer .col-md-8,
header .col-md-6 {
    float: left;
    width: 100%;
}


/* ============================================================
   CONTENT COMPONENTS (CMS-generated)
   ============================================================ */

/* ===== TEXT WINDOW ===== */

.textWindow {
    display: block;
}

.textwindow_text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #333;
    font-weight: 300;
}

.textwindow_text ul,
.textwindow_text ol {
    padding-left: 1.4em;
    margin-bottom: 14px;
}

.textwindow_text li {
    margin-bottom: 4px;
}

/* Text window accordion/dropdown */
.ui-accordion .ui-accordion-icons {
    border-radius: 0 !important;
}

.ui-widget-content a {
    color: #2877FA !important;
}

.ui-widget-content {
    color: #666666 !important;
    line-height: 22px !important;
}

.ui-accordion h4.ui-accordion-header {
    margin: 0;
    background: #F3F3F3;
    color: Black;
    font-weight: normal;
    padding: 15px 40px;
}

/* Kill jQuery UI / autocomplete widget blue leaking into header search */
.ui-widget-content,
.ui-autocomplete,
.gsc-search-box,
.gsc-input-box,
.gsc-search-box-tools {
    background: transparent !important;
    border: none !important;
}

.bullet {
    list-style: none;
}

ul.bullet li > figure {
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    float: left;
    font-size: 17px;
    font-weight: 700;
    height: 45px;
    margin: -5px 10px 0 0;
    padding: 8px 0 8px 0;
    text-align: center;
    width: 45px;
    background: #231f20;
}

/* ===== LINKS & DOWNLOADS COMPONENTS ===== */

.linksList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.linksList a {
    display: inline-block;
}

.linksList li a {
    text-decoration: none;
}

.linksList li a:hover {
    text-decoration: underline;
}

/* Download/link lists rendered by ESV entity DLLs (no class on ul/li) */
.links_list,
.downloads_list,
ul:has(> li > a > img) {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

li:has(> a > img),
ul:has(> li > a > img) li {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 1.5rem !important;
}

li:has(> a > img)::marker,
ul:has(> li > a > img) li::marker {
    content: none !important;
}

ul:has(> li > a > img) li a {
    display: block !important;
}

ul:has(> li > a > img) li a img {
    display: block !important;
    margin-bottom: 0.5rem !important;
}

.links_link,
.downloads_link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ===== NEWS COMPONENT ===== */

.newscomponent_item {
    padding: 20px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    width: 100%;
}

.newscomponent_item:last-child {
    border-bottom: none;
}

.newscomponent_imagecontainer {
    vertical-align: top;
    padding-right: 20px;
    text-align: left;
    vertical-align: middle;
    line-height: 1;
    float: left;
}

.newscomponent_imagecontainer img {
    width: 100%;
    max-width: 400px !important;
    margin-bottom: 8px;
}

.newscomponent_archivelink {
    float: right;
}

.newscomponent_textcontainer {
    vertical-align: middle;
}

.newscomponent_textcontainer span {
    display: block;
    font-size: 1.071em;
}

.ArticleImage {
    padding-left: 0;
    padding-right: 8px;
    text-align: left;
    float: left;
}

/* ===== VIDEO COMPONENT ===== */

.embed_container h3 {
    cursor: pointer;
    font-size: 0.857em;
    color: #313131;
    text-decoration: none;
    margin-top: 0px;
    margin-bottom: 0px;
}

.embed_container div {
    height: 0;
    overflow: hidden;
    position: relative;
}

.embed_container div dt {
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #313131;
}

.embed_container dt {
    font-size: 0.714em;
    color: #0041B5;
    text-decoration: none;
}

.video-js.vjs-fluid {
    clear: both;
}

/* ===== GALLERY COMPONENT ===== */

.gallerycomponent_titletext {
    font-size: 1.1em;
    color: black;
    text-decoration: none;
}

.gallerygrouping_item {
    margin-left: 6px;
    margin-right: 9px;
    float: left;
    width: 132px;
    height: 148px;
}

.gallerycomponent_smalllink {
    font-size: 0.87em;
    color: #0000EE;
    text-decoration: none;
}

.gallerycomponent_maintext {
    font-size: 0.929em;
    color: Black;
    text-decoration: none;
}

.gallerycomponent_smalltext {
    font-size: 0.857em;
    color: black;
    text-decoration: none;
}

/* ===== SURVEY COMPONENT ===== */

.survey_maintext {
    font-size: 1em;
    color: Black;
    font-weight: bold;
}

.survey_smalltext {
    font-size: 0.929em;
}

.survey_smalltext a {
    font-size: 0.857em;
    color: #3e699e;
    text-decoration: none;
}

.survey_smalltext a:hover {
    text-decoration: underline;
}

.survey_questiontext {
    font-size: 1em;
    color: Black;
}

.survey_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.survey_spacer {
    height: 4px;
}

.survey_divider {
    height: 1px;
    background-color: Black;
}

.survey_background {
    background-color: gainsboro;
}

.survey_errormsg {
    font-weight: bold;
    font-size: 0.929em;
    color: red;
    text-decoration: none;
}

/* ===== EMPLOYMENT COMPONENT ===== */

.employmentBG_item {
    margin-top: 15px;
}

.employment_titletext {
    font-size: 1.214em;
    color: #666666;
    font-weight: bold;
}

.employment_maintext {
    font-size: 1.143em;
    color: Black;
    font-weight: bold;
    text-decoration: underline;
}

.employment_smalltext {
    font-size: 0.929em;
    color: #333333;
}

.employment_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.employmentBG_itemsep {
    height: 1px;
    background-color: #ffffff;
}

.employmentBG_groupsep {
    height: 1px;
    margin: 4px 0 4px 0;
    background-color: #c4c4c4;
}

.employment_bar {
    height: 1px;
    background-color: #313131;
}

/* ===== STAFF DIRECTORY COMPONENT ===== */

.staffdirectory_gridtext {
    font-size: 0.786em;
    color: Black;
    font-weight: normal;
}

.staffdirectory_gridtitle {
    font-size: 0.857em;
    color: Black;
    font-weight: bold;
}

.staffdirectory_gridlink {
    font-size: 0.786em;
    color: #001430;
    text-decoration: none;
}

.staffdirectory_header {
    font-size: 1.357em;
    color: Black;
    font-weight: bold;
}

.staffdirectory_maintext {
    font-size: 0.929em;
    color: Black;
    font-weight: bold;
}

.staffdirectory_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.staffdirectory_smalltext {
    font-size: 0.857em;
    color: #333333;
}

.staffdirectory_smalltext_bold {
    font-size: 0.929em;
    color: #222222;
    font-weight: bold;
}

.staffdirectory_tinytext {
    font-size: 0.857em;
    color: Black;
}

.staffdirectory_altBG {
    background-color: #E7E7E7;
}

.staffdirectory_vertsep {
    background-color: Gainsboro;
}

/* ===== PODCAST COMPONENT ===== */

.podcast_titletext {
    font-size: 1.143em;
    font-weight: bold;
    color: Black;
}

.podcast_maintext {
    font-size: 0.929em;
    font-weight: normal;
    color: #333333;
}

.podcast_smalltext {
    font-size: 0.857em;
    color: Black;
}

.podcast_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.podcast_altBG {
    background-color: #dfebf7;
}

/* ===== BLOG COMPONENT ===== */

.blog_maintext {
    font-size: 1.071em;
    color: Black;
}

.blog_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.blog_smalltext {
    font-size: 0.714em;
    color: Black;
}

.blog_smalllink {
    font-size: 0.714em;
    color: Blue;
    text-decoration: none;
}

.blog_titletext {
    font-size: 1.5em;
    color: Black;
    font-weight: normal;
}

.blog_posttitle {
    font-size: 1.143em;
    color: #222222;
    font-weight: bold;
}

.blog_sideBG {
    background-color: #dfebf7;
}

/* ===== ADMIN MESSAGE COMPONENT ===== */

.adminmessage_image {
    padding-left: 0;
    padding-right: 10px;
    text-align: left;
}

/* ===== EVENT CALENDAR MINI WIDGET (inline calendar on sidebar) ===== */

.eventCalendar,
.weeklyEventCalendar {
    width: 100%;
    font-size: 1em;
    font-family: 'Proxima-Nova', Sans-Serif;
    border: none !important;
    border-radius: 2px;
    background: #fafafa;
    box-sizing: border-box;
    margin-left: -18px;
    margin: 0 auto;
}

.eventCalendar th,
.eventCalendar td {
    border: none;
    background: none;
}

.eventCalendar_todayDayStyle {
    background: none !important;
}

/* Day header style */
.eventCalendar th {
    padding: 10px 0;
    color: #101010;
    background: none;
    font-weight: bold;
    font-size: 1em;
}

.eventCalendar a {
    text-decoration: none !important;
}

/* Month and year style */
.eventCalendar_titleStyle {
    background-color: #1F78FF;
    color: #fff;
    border: none;
    font-size: 1.242em;
    font-weight: bold;
    text-transform: uppercase;
}

.eventCalendar_titleStyle td {
    padding: 10px 0;
}

.eventCalendar_nextPrevStyle a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1.12em;
    text-align: center;
    padding: 0 25px;
    margin-top: -2px;
}

.eventCalendar_dayStyle a,
.eventCalendar_todayDayStyle a,
.eventCalendar_otherMonthDayStyle a {
    width: 26px;
    height: 26px;
    line-height: 24px;
    padding: 0;
    margin: 0;
    text-align: center;
    display: block;
}

.eventCalendar_otherMonthDayStyle a {
    display: none;
}

.eventCalendar_dayStyle a {
    background-color: none;
    color: inherit !important;
}

.eventCalendar_todayDayStyle a {
    color: #fff !important;
    font-weight: bold;
    background-color: #000;
}

/* Other month is hidden on this site */
.eventCalendar_otherMonthDayStyle a {
    background: transparent !important;
    color: transparent !important;
    padding: 0;
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
}

.eventCalendar_dayStyle:hover a,
.eventCalendar_otherMonthDayStyle:hover a,
.eventCalendar_todayDayStyle:hover a {
    background-color: #1F78FF;
    color: #fff !important;
}

.eventCalendar_dayStyle,
.eventCalendar_todayDayStyle {
    padding: 5px 0;
}

.eventCalendar tr:not(:first-child) td:first-child,
.eventCalendar th td:first-child {
    padding-left: 10px;
}

.eventCalendar tr:not(:first-child) td:last-child,
.eventCalendar th td:last-child {
    padding-right: 10px;
}

.eventCalendar tr:last-child td {
    padding-bottom: 10px;
}

.eventCalendarWeekly_otherMonthDayStyle {
    padding: 5px 0;
    background: #ddd !important;
}

.eventCalendarWeekly_otherMonthDayStyle a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    padding: 0 !important;
    margin: 0;
}

.eventCalendar_main_hasEvents {
    background-color: #C0C0C0;
}

/* ===== EVENTS COMPONENT ===== */

.eventcomponent_item {
    padding: 13px 0;
    display: table;
    border-bottom: 1px solid #ededed;
    width: 100%;
    margin: 0 !important;
}

.eventcomponent_item:first-child {
    padding-top: 20px;
}

.eventcomponent_item:last-child {
    border-bottom: none;
}

.eventcomponent_leftcontainer {
    display: table-cell;
    vertical-align: middle;
    width: 83px;
}

/* Event date tile — month + day centered in a rounded accent chip.
   (Styles the real .eventDateBubble/.eventText markup; the
   .eventcomponent_datecontainer* rules below are legacy/unused.)
   For a circle instead of a rounded square, set border-radius: 50%. */
.eventDateBubble {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.05;
    box-shadow: 0 3px 8px rgba(0,0,0,0.14);
}
.eventDateBubble br { display: none; }
.eventDateBubble .eventText {
    width: auto !important;   /* override the inline width:100% on the day span */
    display: block;
    color: #fff;
}
.eventDateBubble .eventText:first-child {   /* month */
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.92;
    margin-bottom: 3px;
}
.eventDateBubble .eventText:last-child {    /* day number */
    font-size: 1.55rem;
    font-weight: 700;
}

.eventcomponent_datecontainer {
    float: left;
    text-align: center;
    background: var(--red);
    padding: 0px;
    line-height: 1;
    font-weight: 400;
    font-size: 1.5em;
    font-family: 'Inter', sans-serif;
    width: 70px;
    height: 70px;
    border: 1px solid var(--red);
}

.eventcomponent_datecontainer_bottom {
    background-color: #fff;
    width: 68px;
    height: 34px;
    color: var(--red);
}

.eventcomponent_month {
    color: #fff;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 34px;
}

.eventcomponent_date {
    line-height: 33px;
}

.eventcomponent_textcontainer {
    display: table-cell;
    vertical-align: middle;
}

.eventcomponent_textcontainer h3 {
    font-size: 1em;
    margin-top: 0;
    margin-bottom: 5px;
}

.eventcomponent_linktext {
    color: #333;
    font-weight: 600;
    line-height: 24px;
    font-size: 1.125em;
    max-height: 24px;
    overflow: hidden;
}

.eventcomponent_maintext {
    color: #252525;
    line-height: 30px;
    max-height: 30px;
    overflow: hidden;
    font-size: 1em;
}

.eventcomponent_datetext {
    font-family: "poppins", Sans-Serif;
    color: #252525;
    font-size: 1em;
    line-height: 24px;
    max-height: 24px;
    overflow: hidden;
}

.eventcomponent_viewall {
    font-size: 0.929em;
    text-align: center;
    color: #25a0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* ===== TABLE STYLES (CMS-generated tables) ===== */

/* Global table reset — affects all tables on the site */
table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    font-family: inherit !important;
    font-size: 0.95rem !important;
    background-color: #fff !important;
    border: 1px solid #e2e6ea !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

table thead th {
    background: #f7f9fc !important;
    color: #333 !important;
    font-weight: 600 !important;
    text-align: left !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid #e2e6ea !important;
}

table tbody td {
    padding: 10px 14px !important;
    border-bottom: 1px solid #f1f1f1 !important;
    color: #444 !important;
    vertical-align: middle !important;
}

table tbody tr:nth-child(even) {
    background-color: #fafbfc !important;
}

table tbody tr:hover {
    background-color: #f0f4fa !important;
}

table tbody tr:last-child td {
    border-bottom: none !important;
}

table td,
table th {
    transition: background 0.2s ease;
}

/* Table border-style utility classes */
.tableDashed thead tr th,
.tableDashed tfoot tr td,
.tableDashed tbody tr td {
    border: 1px dashed #808080;
}

.tableDotted thead tr th,
.tableDotted tfoot tr td,
.tableDotted tbody tr td {
    border: 1px dotted #808080;
}

.tableSolid thead tr th,
.tableSolid tfoot tr td,
.tableSolid tbody tr td {
    border: 1px solid #808080;
}

.tableColAltGray thead tr th,
.tableColAltGray tfoot tr td,
.tableRowAltGray thead tr th,
.tableRowAltGray tfoot tr td {
    background: rgb(183 183 183 / 85%);
}

.tableColAltBlue thead tr th,
.tableColAltBlue tfoot tr td,
.tableRowAltBlue thead tr th,
.tableRowAltBlue tfoot tr td {
    background: rgb(129 162 213 / 85%);
}

.tableRowAltGray tbody tr:nth-child(2n) {
    background: rgb(210 209 209 / 48%);
}

.tableColAltGray tbody tr td:nth-child(2n) {
    background: rgb(210 209 209 / 48%);
}

.tableRowAltBlue tbody tr:nth-child(2n) {
    background: rgb(177 204 246 / 41%);
}

.tableColAltBlue tbody tr td:nth-child(2n) {
    background: rgb(177 204 246 / 41%);
}

.tableCellPadding tfoot tr td,
.tableCellPadding thead tr th,
.tableCellPadding tbody tr td {
    padding: 5px 6px 5px 6px !important;
}

/* Cell-level border-color classes */
table thead tr th.cellRedBorder,
table tfoot tr td.cellRedBorder,
table tbody tr td.cellRedBorder {
    border-color: #DF0000;
}

table thead tr th.cellWhiteBorder,
table tfoot tr td.cellWhiteBorder,
table tbody tr td.cellWhiteBorder {
    border-color: #FFF;
}

table thead tr th.cellBlackBorder,
table tfoot tr td.cellBlackBorder,
table tbody tr td.cellBlackBorder {
    border-color: #000;
}

table thead tr th.cellMediumBorder,
table tfoot tr td.cellMediumBorder,
table tbody tr td.cellMediumBorder {
    border-width: 3px;
}

table thead tr th.cellThickBorder,
table tfoot tr td.cellThickBorder,
table tbody tr td.cellThickBorder {
    border-width: 5px;
}

/* Lightbox gallery grid */
.wrap {
    overflow: hidden;
    margin: 10px;
}

.box {
    float: left;
    position: relative;
    width: 20%;
    padding-bottom: 20%;
}

.boxInner {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    overflow: hidden;
}

.boxInner img {
    width: 100%;
}

.boxInner .titleBox {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: -200px;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    padding: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

body .boxInner:hover .titleBox {
    margin-bottom: 0;
}

/* Dashboard */
.DashboardNav {
    width: 100%;
    border: 1px solid #C1C1C1;
    padding: 11px;
    margin-bottom: 5px;
}

.cblAreas {
    font-weight: normal;
    font-size: 0.714em;
    color: #333333;
}

.cblAreas tr td {
    width: 33%;
}


/* ============================================================
   ARTICLE ARCHIVE
   ============================================================ */

/* Note: The modern archive card styles live in ArticleArchive.aspx <style> block.
   The rules below are legacy/global archive styles. */

/* Filter container (global, overridden by page-scoped styles) */
.filterContainer {
    width: 225px;
    float: left;
    padding: 10px 10px 30px 10px;
    margin: 0 15px 10px 0;
    border-right: solid 1px #333;
}

.filterTitle {
    font-weight: bold;
    font-size: 0.929em;
    color: #333333;
    padding: 10px 0 5px 0;
}

.ddl_buildings {
    width: 210px;
}

.ArticleArchive_searchButton {
    width: 90%;
    display: block;
    border: 1px solid #333;
    border-radius: 4px;
    color: #333;
    font-size: 1.12em;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    background-color: #eee;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
    margin: 10px;
}

/* Paging menu */
.pagingMenu {
    padding: 5px 5px 10px 5px;
    font-size: 1em;
    font-weight: bold;
    border-bottom: solid 1px #333;
    margin-bottom: 10px;
    overflow: hidden;
}

/* Month accordion */
.monthDiv {
    margin: 5px 5px 15px 5px;
    padding: 5px;
    background-color: #f3f3f3;
    display: none;
    font-size: 0.857em;
    border: solid 1px black;
}

.monthTitle {
    margin: 5px;
    padding: 5px;
    font-weight: bold;
}


/* ============================================================
   CALENDAR
   ============================================================ */

/* Note: The modern MasterCalendar styles live in protected/MasterCalendar.aspx <style> block.
   The rules below are legacy/global calendar styles used by other components. */

.mastercalendar_monthly_header {
    text-align: center;
    background: #efefef;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.mastercalendar_note {
    margin-bottom: 10px;
}

.mastercalendar_filtercontainer {
    margin: 0 0 10px;
}

.mastercalendar_filterbar {
    padding: 10px 15px;
    background: #efefef;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
}

.mastercalendar_filterpanel {
    padding: 10px 15px;
    background: #efefef;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
}

.mastercalendar_dailyitem {
    padding: 10px;
}

.mastercalendar_dailyitem:nth-child(odd) {
    background: #dedede;
}

.mastercalendar_week_daycontainer {
    padding: 5px;
    margin: 0 0 5px;
    background: #dedede;
}

.mastercalendar_week_daycontainer h3 {
    text-align: center;
    padding: 5px 0;
    margin: 0;
    font-weight: normal;
}

.mastercalendar_week_eventcontainer {
    padding: 10px;
    background: #fafafa;
    margin: 5px 0 0;
}

/* Month calendar grid (global / legacy — overridden by page-scoped rules) */
.mastercalendar_month_calendar {
    table-layout: fixed;
    border-collapse: collapse;
    min-width: 100%;
}

.mastercalendar_month_calendar th {
    padding: 5px;
    border: 1px solid #dddddd;
    vertical-align: top;
    height: 30px;
    width: 14%;
}

.mastercalendar_month_calendar td {
    padding: 5px;
    border: 1px solid #dddddd;
    vertical-align: top;
    height: 100px;
    width: 14%;
}

.mastercalendar_month_daynum {
    display: block;
    text-align: right;
    margin: 0 0 5px;
    line-height: 1;
    font-weight: bold;
}

.mastercalendar_month_dayitem {
    font-size: 0.857em;
    margin: 0 0 10px;
}

.mastercalendar_month_greyedday {
    background: #efefef;
}

.mastercalendar_rssfeed {
    width: 100%;
    padding: 5px 0 0;
    text-align: center;
    background: white;
    max-width: 300px;
    margin: 0 auto 10px;
    border-radius: 5px;
    display: block;
}


/* ============================================================
   FORMS & INPUTS
   ============================================================ */

/* Login forms */
.login_form {
    width: 50%;
}

.login_form label {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin-bottom: 5px;
}

.login_form label span {
    display: table-cell;
    text-align: right;
    padding-right: 5px;
}

.login_form label input {
    display: table-cell;
    width: 100%;
}

.login_form input[type="submit"] {
    width: 50%;
    float: right;
}

/* Login inputs */
.login_input {
    width: 270px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    border-radius: 4px;
    padding: 10px 20px;
    display: block;
}

.login_button {
    width: 270px;
    display: block;
    border: 0px;
    border-radius: 4px;
    color: #fff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    background-color: #1F78FF;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 10px;
}

/* General form helpers */
.form-error {
    display: inline;
    color: Red;
    font-weight: normal;
}

textarea.form-control {
    resize: vertical;
}

.form-content {
    margin: 1em 0;
}

hr.form-separator {
    margin: 1em 0;
    height: 1px;
    background: #ddd;
    border: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */

/* Hover animation classes (CMS component option) */
.CssGrow {
    transition: transform 0.5s;
}

.CssGrow:hover {
    transform: scale(1.15);
}

.CssShrink {
    transition: transform 0.5s;
}

.CssShrink:hover {
    transform: scale(0.85);
}

.CssSkew {
    transition: transform 0.5s;
}

.CssSkew:hover {
    transform: skew(-10deg);
}

.CssSkewForward {
    transition: transform 0.5s;
    transform: skew(0deg) perspective(1px) translateZ(0);
    transform-origin: 0 100%;
}

.CssSkewForward:hover {
    transform: skew(-10deg) perspective(1px) translateZ(0);
}

.CssSkewBackward {
    transition: transform 0.5s;
    transform: skew(0deg) perspective(1px) translateZ(0);
    transform-origin: 0 100%;
}

.CssSkewBackward:hover {
    transform: skew(-10deg) perspective(1px) translateZ(0);
}

.CssFloat {
    transition: transform 0.5s;
}

.CssFloat:hover {
    transform: translateY(-8px);
}

.CssSink {
    transition: transform 0.5s;
}

.CssSink:hover {
    transform: translateY(8px);
}

.CssForward {
    transition: transform 0.5s;
}

.CssForward:hover {
    transform: translateX(8px);
}

.CssBackward {
    transition: transform 0.5s;
}

.CssBackward:hover {
    transform: translateX(-8px);
}

.CssPop:hover {
    -webkit-animation-name: CssPop;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-direction: alternate;
    animation-name: CssPop;
    animation-duration: 0.5s;
    animation-direction: alternate;
}

@-webkit-keyframes CssPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes CssPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.CssPush:hover {
    -webkit-animation-name: CssPush;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-direction: alternate;
    animation-name: CssPush;
    animation-duration: 0.5s;
    animation-direction: alternate;
}

@-webkit-keyframes CssPush {
    0%   { transform: scale(1); }
    50%  { transform: scale(0.85); }
    100% { transform: scale(1); }
}

@keyframes CssPush {
    0%   { transform: scale(1); }
    50%  { transform: scale(0.85); }
    100% { transform: scale(1); }
}

.CssPulse:hover {
    -webkit-animation-name: CssPulse;
    -webkit-animation-duration: 0.75s;
    webkit-animation-iteration-count: 500;
    -webkit-animation-timing-function: linear;
    animation-name: CssPulse;
    animation-duration: 0.75s;
    animation-iteration-count: 500;
    animation-timing-function: linear;
}

@-webkit-keyframes CssPulse {
    25% { transform: scale(1.1); }
    75% { transform: scale(0.9); }
}

@keyframes CssPulse {
    25% { transform: scale(1.1); }
    75% { transform: scale(0.9); }
}

.hiddenBreak {
    display: none;
}


/* ============================================================
   RESPONSIVE / MEDIA QUERIES
   ============================================================ */

/* --- Component inner: center text on very small screens --- */
@media screen and (max-width: 640px) {
    .component_container_inner {
        text-align: center;
    }
}

/* --- Dual-window layout: full width on mobile --- */
@media screen and (max-width: 991px) {
    #ucContentPage_dualWindow {
        width: 100%;
    }

    #closings1_divAlertBanner,
    #closings1_divMinimizedBanner {
        margin-top: 20px;
    }
}

/* --- File cabinet iframes --- */
@media screen and (max-width: 650px) {
    div[src*='filecabinet'] {
        width: 100% !important;
        height: auto !important;
    }
}

/* --- Interior page layout breakpoints ---
   Horizontal padding handled by --shell-gutter; only vertical
   rhythm and grid template change at breakpoints. */
@media screen and (max-width: 1100px) {
    .interior-wrapper {
        grid-template-columns: 210px 1fr;
        gap: 44px;
        padding-block: 50px 80px;
    }
}

@media screen and (max-width: 900px) {
    .interior-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        padding-block: 40px 60px;
    }

    #ucLeftNav_pnlLeftSide {
        position: static;
        margin-bottom: 32px;
        padding: 20px 18px 16px;
    }

    #ucContentPage_pnlControls,
    #ucContentPage_dualWindow {
        padding: 0;
    }

    .page-header {
        padding-block: 28px 22px;
    }
}

@media screen and (max-width: 640px) {
    .interior-wrapper {
        padding-block: 28px 48px;
    }
}

/* --- News component --- */
@media screen and (max-width: 670px) {
    .newscomponent_imagecontainer {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .newscomponent_item {
        text-align: left;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 400px) {
    .newscomponent_item {
        display: block;
    }

    .newscomponent_imagecontainer {
        display: block;
        padding: 0 0 12px;
    }

    .newscomponent_imagecontainer img {
        margin: 0 auto;
        display: block;
        width: 100%;
    }

    .newscomponent_textcontainer {
        display: block;
    }
}

/* --- Homepage arrow container --- */
@media screen and (max-width: 346px) {
    #hpArrowContainer {
        float: left;
        margin-top: 15px;
        clear: left;
    }

    #hpArrowContainer button:first-child {
        margin-left: 0;
    }
}

/* --- Lightbox gallery --- */
@media only screen and (max-width: 480px) {
    .box {
        width: 100%;
        padding-bottom: 100%;
    }
}

@media only screen and (max-width: 650px) and (min-width: 481px) {
    .box {
        width: 50%;
        padding-bottom: 50%;
    }
}

@media only screen and (max-width: 1050px) and (min-width: 651px) {
    .box {
        width: 33.3%;
        padding-bottom: 33.3%;
    }
}

@media only screen and (max-width: 1290px) and (min-width: 1051px) {
    .box {
        width: 25%;
        padding-bottom: 25%;
    }
}

@media screen and (max-width: 344px) {
    .SuperText a {
        font-size: 0.875em;
    }
}

@media only screen and (max-width: 616px) {
    header h2 {
        padding-right: 1.59em;
    }
}

/* --- StickyNav responsive --- */
@media screen and (max-width: 1300px) {
    .StickyNav {
        top: 30px;
    }

    .StickyNav .Text {
        font-size: 12px;
    }
}

@media screen and (max-width: 1100px) {
    .StickyNav {
        top: 10px;
    }
}

@media screen and (max-width: 1036px) {
    .StickyNav a {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 769px) {
    .StickyNavContainer {
        display: none;
    }
}

/* --- Left nav mobile --- */
/* Mobile shows the nav directly (no toggle wrapper).
   The "SHOW NAVIGATION ▼" checkbox-toggle pattern was retired —
   parents prefer seeing the school's nav inline on every page. */
@media screen and (max-width: 991px) {
    .DynamicNav {
        margin-bottom: 20px;
    }

    /* Hide the legacy show/hide toggle button on mobile */
    .DynamicNav_show-menu {
        display: none !important;
    }

    /* Always show the nav contents — no checkbox required */
    .dyn-nav-header,
    .dyn-nav-list,
    #menu {
        display: block;
    }
}

/* --- Footer responsive --- */
@media screen and (max-width: 991px) {
    .footer_logo {
        width: 100%;
        margin: 0 auto;
        float: none;
        padding: 0;
        text-align: center;
    }
}


/* ============================================================
   FROALA EDITOR PREVIEW (admin only)
   Mirrors .textwindow_text base styles using .fr-element so the
   CMS editor preview matches the live site. .fr-element does not
   exist on the live site so these rules have zero public impact.
   ============================================================ */

.fr-element {
    font-size: 15px !important;
    line-height: 1.9 !important;
    color: #333 !important;
    font-weight: 300 !important;
    font-family: 'Inter', sans-serif !important;
}

.fr-element ul,
.fr-element ol {
    padding-left: 1.4em !important;
    margin-bottom: 14px !important;
}

.fr-element li {
    margin-bottom: 4px !important;
}
