/*
 * Styles should ONLY be added here temporarily and/or as a last resort.
*/

/* Image styles inside other elements. */
.rounded-tr-\[50px\] img {
    border-top-right-radius: 50px;
    width: 100%;
}
.object-cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header banner. */
.banner.bg-color-custom-cold-navy .prose {
    text-rendering: optimizeLegibility;
    text-shadow: 0 0 4px #000, 0 2px 3px rgba(0,0,0,0.35);
    font-weight: 500;
}
.banner.bg-color-custom-cold-navy .prose a {
    text-shadow: none;
}
.banner a {
    background-color: var(--color-custom-teal-me-no-lies);
    color: #000 !important;
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    margin-right: 6px;
    padding: 12px 48px;
    text-decoration: none;
    transition: background-color 0.2s ease-in;
}
.banner a:focus {
    outline: 2px solid var(--color-custom-barely-teal);
    outline-offset: 1px;
}
.banner a:hover {
    background-color: #087173;
    color: #FFF !important;
}
.banner a:active {
    background-color: #075d5e;
    color: #FFF !important;
}

/* Things we're relying on WYSIWYG for... */
.featured-quote blockquote {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: -0.8px;
    line-height: 1;
    text-transform: uppercase;
    text-wrap: wrap;
}

/* Status messages. These are a PITA to retheme in D10.3+ */
.messages__wrapper {
    margin-bottom: 1rem;
}

.messages__wrapper .messages {
    padding: 0.5rem 1rem;
    color: black;
    background: #a5f3fc;
}

.messages__wrapper .messages--status {
    background: #d9f99d;
}

.messages__wrapper .messages--warning {
    background: #fde68a;
}

.messages__wrapper .messages--error {
    background: #fecaca;
}

/* Forms */
[type='text'], input:where(:not([type])), [type='email'], [type='url'], [type='password'], [type='number'], [type='date'], [type='datetime-local'], [type='month'], [type='search'], [type='tel'], [type='time'], [type='week'], [multiple], textarea, select {
    border: 1px solid currentColor;
    background: transparent none;
    width: 100%;
}
option {
    color: black;
}
.form-type-select {
    position: relative;
}
.form-type-select::after {
    position: absolute;
    content: " ";
    display: block;
    right: 0.5rem;
    bottom: 1rem;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid currentColor;
    width: 0;
    height: 0;
}

/* A funky shift for About factoid blocks */
@media (min-width: 1024px) {
    .blockshift > *:nth-child(3n-1) {
        margin-top: 0.75rem;
    }
}
