.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

.code {
    color: #c02d76;
}

/*Social Media*/
.rhk_social {
    position: absolute;
    left: 235px;
}

.icons-default {
    color: black;
}

/*FONTS*/
.raleway {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('../font-awesome/webfonts/fa-v4compatibility.ttf') format('truetype');
}

/* Custom Entry for RHK */

/*Carousel Code*/
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: -1rem;
    margin-left: 15%;
    
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #1A3460;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.carousel-indicators .active {
    opacity: 1;

}

.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l128-128c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 256c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-128-128z"/></svg>');
    filter: invert(0)    
}

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z"/></svg>');
    filter: invert(0);
}

/*All Media uses*/
.RHK_PrayerWords, .RHK_PrayerTitle, .rhk-body-std-linebrk, .rhk-title-ln1, .rhk-title-ln2, .rhk-title-block, .rhk-title-span, .RHKcol1Cross, .RHK_OM, .RHKcol1Chevron, .RHK_OV, .RHK_OMW_head,
.RHK_OMW, .RHK_OVW_head, .RHK_OVW, .RHK_SupportTitle, .RHK_SupportWords, .rhk_loc_words, .rhk_loc_header, .kerrCityMap_rt, .kerrCityDetails, .rhk_about_header_ln1, .rhk_about_header_ln2,
.rhk_about_auw, .rhk_about_osh, .rhk_about_osw, .rhk_about_oph, .rhk_about_opw1, .rhk_about_opw15, .rhk_about_opw2, .rhk_about_opw3, .rhk_about_opw4, .RHK_GetInvolved,
.rhk_faith_doctrinal-head, rhk_faith_doctrinal-head3, .rhk_faith_doctrinal-words, .rhk_sg_sighup, .rhk_tf_main_headers2, .rhk_tf_fa_pray, .rhk_tf_main_headers4, .rhk_tf_headers3, .rhk_tf_body,
.rhk_tf_footer, .rhk_tf_footer_body {
    font-size: clamp(var(--min), var(--val), var(--max));
}

.rhk_navbar {
    background-color: white !important;    
}

.rhk_navbar-brand {
    min-width: 44px !important;
    min-height: 44px !important;    
}

.rhk_nav-link {
    min-width: 44px !important;
    min-height: 44px !important;
    font-weight: 900;    
}

.headerimg {
    background-position: center;
    background-size: cover;
    background-image: url(/content/images/KerrvilleMissionCityHall.png);
    object-fit: contain;
    min-height: 40vw;
    position: relative;
}

.rhk-center-text {
    position: relative;
    top: -1vw;
}

.rhk_logo_div {
    display: inline-block;
}

.rhk_logo_logo {
    top: 1vw;
    left: 28vw;
    width: 42vw;
    position: relative;
}

.oval-background {
    position: absolute; /* Position relative to the image-container */
    z-index: 0; /* Place it BEHIND the image (lower z-index) */
    /* Center the oval behind the image */
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Size the oval (e.g., slightly larger than the image) */
    width: 48%; /* Adjust as needed */
    /* --- Method 1: Modern CSS aspect-ratio --- */
    aspect-ratio: 16 / 9; /* Enforces the 16:9 aspect ratio */
    /* --- Method 2: Padding Hack Fallback (use if aspect-ratio isn't supported) --- */
    /* height: 0; */ /* Required for padding hack */
    /* padding-bottom: calc(110% * 9 / 16); */ /* Calculate height based on width (110% * 9/16) */
    /* Make it an oval */
    border-radius: 50%;
    /* Background color and transparency */
    /* Black with 30% transparency (70% opacity) */
    background-color: rgba(255, 255, 255, 0.7);
    /* You can change the color (e.g., white): */
    /* background-color: rgba(255, 255, 255, 0.7); */
}

.rhk-title-ln1 {
    --min: 3.5vw;
    --val: 7vw;
    --max: 12vw;
    margin: auto;
    text-align: center;
    position: relative;
    text-shadow: #1A3460 2px 2px;
    color: white;
}

.rhk-title-ln2 {
    --min: 2.5vw;
    --val: 6vw;
    --max: 10vw;
    margin: auto;
    text-align: center;
    position: relative;
    text-shadow: #1A3460 2px 2px;
    color: white;
    top: -0.5vw;
}

.rhk-center-bgimg {
    position: relative;
    top: -1.75vw;
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
}

.rhk-title-block {
    background-color: #6FA3D9;
    position: relative;
    color: white;
    --min: 1vw;
    --val: 4.5vw;
    --max: 6vw;
    text-align: center;
    width: 100%;
}

.rhk_omov_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.rhk_omov_grid > div {
    text-align: center;
}

/*.RHKrow1 {
    display: grid;
    height: 160px;
}*/

.columnOM {
    background-color: #2D60A1;
    grid-column-start: 1;
    grid-column-end: 1;
    display: grid;
    height: 150px;
    grid-column: span 1;
}

.columnOMW {
    background-color: #1A3460;
    grid-column-start: 2;
    grid-column-end: 4;
    display: grid;
    grid-column: span 3;
    height: 150px;
    
}

/*.RHKrow2 {
    display: grid;
    height: 160px;
}*/

.columnOVW {
    background-color: #6FA3D9;
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
    grid-column: span 3;
    height: 150px;
}

.columnOV {
    background-color: #2D60A1;
    grid-column-start: 4;
    grid-column-end: 4;
    display: grid;
    height: 150px;
    grid-column: span 1    
}

/*Phone*/
@media screen and (max-width: 1023px) {
    /*Home Page CSS*/
    .rhk-title-span {
        --min: 1.0vw;
        --val: 4.0vw;
        --max: 6vw;
        top: -2.25vw;
        position: relative;
        vertical-align: middle;
        text-align: center;
        width: 100%;
    }

    .RHKcol1Cross {
        color: #1A3460;
        position: relative;
        --min: 1vw;
        --val: 20vw;
        --max: 30vw;
        top: 10vw;
        left: 5.5vw;
    }

    .RHK_OM {
        color: white;
        --min: 1vw;
        --val: 5vw;
        --max: 20vw;
        position: relative;
        top: -7vw;
        left: -0.25vw;
        width: 100%;
        height: 100%;
    }

    .RHKcol1Chevron {
        --min: 1vw;
        --val: 10vw;
        --max: 30vw;
        color: #1A3460;
        position: relative;
        top: 13vw;
        left: -0.25vw;
    }

    .RHK_OV {
        color: white;
        --min: 1vw;
        --val: 5vw;
        --max: 20vw;
        position: relative;
        top: -6vw;
        left: 1vw;
        width: 100%;
        height: 100%;
    }

    .RHK_OMW_head {
        color: white;
        font-family: raleway;
        font-weight: bold;
        --min: 1vw;
        --val: 3.5vw;
        --max: 5vw;
        text-align: center;
        position: relative;
        padding-left: 10%;
        padding-right: 10%;
    }

    .RHK_OMW {
        color: white;
        font-family: raleway;
        --min: 1.5vw;
        --val: 3vw;
        --max: 8.5vw;
        text-align: center;
        margin: auto;
        position: relative;
        height: 100%;
        top: 0.5vw;
        white-space: nowrap;
    }

    .RHK_OVW_head {
        color: white;
        font-family: raleway;
        font-weight: bold;
        --min: 1vw;
        --val: 3.5vw;
        --max: 5vw;
        text-align: center;
        position: relative;
        padding-left: 10%;
        padding-right: 10%;
    }

    .RHK_OVW {
        color: white;
        --min: 1.5vw;
        --val: 3vw;
        --max: 8.5vw;
        text-align: center;
        position: relative;
        margin: auto;
    }

    .RHK_SupportTitle {
        color: black;
        --min: 1vw;
        --val: 3.5vw;
        --max: 5vw;
        margin: auto;
        text-align: center;
    }

    .RHK_SupportWords {
        color: black;
        --min: 1.5vw;
        --val: 3vw;
        --max: 8.5vw;
        margin: auto;
        text-align: center;
    }

    .footerimg {
        background-position: center;
        background-size: cover;
        background-image: url("/content/images/KerrvilleMissionCross.png");
        object-fit: cover;
        min-height: 170vw;
        position: relative
    }

    /*Faith*/
    .rhk_faith_doctrinal_img {
        background-position-x: 26%;
        background-repeat: no-repeat;
        background-image: url("/content/images/KerrvilleMissionOutlookSunSet.png");
        position: relative;
        min-height: 200vw;
    }

    .rhk_faith_doctrinal_diffuse {
        background-color: hsl(213, 56%, 40%, 0.62);
        position: relative;
    }

    .rhk_faith_doctrinal-head {
        --min: 1.5vw;
        --val: 6vw;
        --max: 15.5vw;
        text-align: center;
        text-shadow: black 2px 2px;
        color: white;
    }

    .rhk_faith_doctrinal-head3 {
        --min: 1.5vw;
        --val: 5.25vw;
        --max: 6.5vw;
        text-shadow: black 2px 2px;
        color: white;
    }

    .rhk_faith_doctrinal-words {
        --min: 1.5vw;
        --val: 3.25vw;
        --max: 6.5vw;
        color: white;
    }

    .rhk_faith_doctrinal-w1 {
        text-shadow: black 2px 2px;
        position: relative;
    }

    /*Location Page CSS*/
    .locheaderimg {
        background-position-y: 25%;
        background-position-x: 17%;
        background-repeat: no-repeat;
        background-image: url("/content/images/KerrvilleMissionDownTheLeftStreet.png");
        position: relative;
        min-height: 190vw;
    }

    .rhk_loc_header {
        --min: 3.5vw;
        --val: 5vw;
        --max: 12vw;
        margin: auto;
        text-align: center;
        position: relative;
        text-shadow: #1A3460 2px 2px;
        color: white;
    }

    .rhk_loc_words {
        color: white;
        --min: 1.5vw;
        --val: 4.25vw;
        --max: 30vw;
        margin: auto;
        text-align: center;
    }

    .rhk_diffuse {
        background-color: hsl(213, 56%, 40%, 0.62);
        position: relative;
        width: 90vw;
        top: 10vw;
        left: 35vw;
        margin-right: 35vw;
        margin-bottom: 22vw;
        padding-left: 1vw;
        padding-right: 9vw;
        padding-top: 1vw;
        padding-bottom: 12.4vw;
        float: right;
    }

    .kerrCitymap {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/content/images/CityOfKerrvilleMap.png");
        position: relative;
        min-height: 113vw;
        left: 0.25vw;
        top: 8vw;
    }

    .kerrCityMap_rt {
        --min: 1.5vw;
        --val: 3.75vw;
        --max: 6vw;
        position: relative;
        text-align: center;
        top: -104vw;
        left: 1vw;
    }

    .kerrCityDetails {
        background-color: hsl(24, 94%, 40%, 0.62);
        --min: 1.5vw;
        --val: 4.25vw;
        --max: 6.5vw;
        position: relative;
        top: -0.5vw;
        left: 0vw;
        text-align: center;
        margin-right: 10vw;
        padding-left: 2vw;
        padding-right: 8vw;
        padding-top: 1vw;
        padding-bottom: 1vw;
    }

    /*About Us*/
    .rhk_about_header {
        text-align: center;
        box-sizing: content-box;
    }

    .rhk_about_header_ln1 {
        --min: 1.0vw;
        --val: 5.5vw;
        --max: 8.5vw;
        position: relative;
    }

    .rhk_about_header_ln2 {
        --min: 1.0vw;
        --val: 4.5vw;
        --max: 8.5vw;
        position: relative;
        top: -5vw;
    }

    .rhk_about_auw {
        --min: 1.0vw;
        --val: 3.0vw;
        --max: 4.5vw;
        padding-left: 5vw;
        padding-bottom: 5vw;
    }

    .rhk_about_awi {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/content/images/About_Todd_Marion.png");
        position: relative;
        min-height: 105vw;
    }


    .rhk_about_os_img {
        background-repeat: no-repeat;
        background-image: url("/content/images/KerrvilleMissionCactus.png");
        background-size: cover;
        position: relative;
        min-height: 200vw;
    }

    .rhk_about_os_diffuse {
        background-color: hsl(213, 56%, 40%, 0.62);
        position: relative;
        width: 100%;
        min-height: 2vw;
        padding-left: 1vw;
        padding-right: 1vw;
        padding-top: 1vw;
        padding-bottom: 1vw;
        color: white;
    }

    .rhk_about_osh {
        text-align: center;
        --min: 1.0vw;
        --val: 5.0vw;
        --max: 4.5vw;
    }

    .rhk_about_osw {
        --min: 1.0vw;
        --val: 4.0vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
    }

    .rhk_about_osw1 {
        padding-top: 1.25vw;
    }

    .rhk_about_osw2 {
        padding-top: 1.25vw;
    }

    .rhk_about_osw3 {
        padding-top: 1.25vw;
    }

    .rhk_about_op_img {
        position: relative;
        display: flex;
    }

    .rhk_about_op_diffuse {
        background-color: hsl(24, 94%, 40%, 0.62);
        padding-bottom: 5vw;
    }

    .rhk_about_oph {
        color: #1B335E;
        text-shadow: white 2px 2px 4px;
        text-align: center;
        --min: 1.0vw;
        --val: 5.5vw;
        --max: 4.5vw;
    }

    .rhk_about_opw {
        color: #1A3460;
        text-shadow: white 2px 2px 4px;
    }

    .rhk_about_opw1 {
        text-align: center;
        text-shadow: white 2px 2px 4px;
        --min: 1.0vw;
        --val: 4.5vw;
        --max: 6.5vw;
    }

    .rhk_about_opw15 {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    .rhk_about_opw2 {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    .rhk_about_opw3 {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    .rhk_about_opw4 {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    /*News Page*/
    .sendGrid {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 150%;
    }

    .rhk_sg_signup {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    /*Events Page*/
    .oneChchware {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 150%;
    }

    .rhk_ocs_events {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    /*Outreach*/
    .rhk_outreach_page {
        background-color: #29292a;
    }

    .rhk_outreach_flyer {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/content/outreach/072025-RHC-MK-Outreach.png");
        position: relative;
        min-height: 105vw;
    }

    .ocs_rhc_outreach_form {
        position: relative;
        background-color: #ffffff;
        margin-left: 7vh;
        width: 75%;
        overflow-y: auto;
        height: 100%;
        padding: 20px
    }

    /*TotallyFree*/
    .rhk_tf_alignments {
        background-color: black;
        /*background: linear-gradient(#8AB648, #38B6FF);*/
    }

    .rhk_tf_text_align {
        justify-content: center;
        align-items: center;
        margin: 3vw;
    }

    .rhk_tf_main_headers2 {
        --min: 1.0vw;
        --val: 6.75vw;
        --max: 8.5vw;
        text-align: center;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_fa_pray {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 6.5vw;
        position: relative;
        top: 4.75vw;
        z-index: 0;
        color: #8AB648;
    }

    .rhk_tf_main_headers4 {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 6.5vw;
        text-align: center;
        position: relative;
        left: 3vw;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_headers3 {
        --min: 1.0vw;
        --val: 5.75vw;
        --max: 7.5vw;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_body {
        margin: 5.5vw;
        --min: 1.0vw;
        --val: 4.5vw;
        --max: 5.5vw;
        /*text-shadow: #FF8C00 1px 1px;*/
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_headers {
        --min: 1.0vw;
        --val: 7.75vw;
        --max: 8.5vw;
        color: black;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_footer {
        --min: 1.0vw;
        --val: 4.75vw;
        --max: 5.5vw;
        color: black;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_footer_body {
        --min: 1.0vw;
        --val: 4.75vw;
        --max: 5.5vw;
        text-align: center
    }

    /*read more fancy stuff*/
    .rhk_tf_control_panel {
        /*background-color: rgba(255, 255, 255, 0.5);*/
    }

    .h-divider .shadow {
        overflow: hidden;
        height: 30px;
    }

        .h-divider .shadow:after {
            content: '';
            display: block;
            margin: -25px auto 0;
            width: 100%;
            height: 25px;
            border-radius: 125px/12px;
            box-shadow: 0 0 18px #38B6FF;
        }

    .h-divider .text {
        width: 100px;
        height: 45px;
        padding: 10px;
        position: absolute;
        bottom: 100%;
        margin-bottom: -33px;
        left: 50%;
        margin-left: -60px;
        border-radius: 100%;
        box-shadow: 0 2px 4px #999;
        background: #38B6FF;
    }

        .h-divider .text i {
            position: absolute;
            top: 4px;
            bottom: 4px;
            left: 4px;
            right: 4px;
            border-radius: 100%;
            border: 1px dashed #aaa;
            text-align: center;
            line-height: 50px;
            font-style: normal;
            color: #38B6FF;
        }

    .h-divider .text2 {
        width: 70px;
        height: 70px;
        position: absolute;
        bottom: 100%;
        margin-bottom: -35px;
        left: 50%;
        margin-left: -25px;
        border-radius: 100%;
        box-shadow: 0 2px 4px #999;
        background: #38B6FF;
    }

    .h-divider img {
        position: absolute;
        margin: 4px;
        max-width: 60px;
        border-radius: 100%;
        border: 1px dashed #aaa;
    }

    /*modal controls*/
    .modal-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1050;
    }

    .modal-content {
        background: #fff;
        border-radius: 8px;
        max-width: 90vw;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        padding: 1rem;
        position: relative;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .close-btn {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .modal-content {
        max-width: 98vw;
        padding: 0.5rem;
    }
    /*end modal controls*/

    /*end read more fancy stuff*/

    .hidden-text {
        display: none;
        margin-top: 10px;
    }

    .read-more-link {
        cursor: pointer;
        color: #8BC34A !important;
        -webkit-text-fill-color: #8BC34A;
        text-decoration: underline;
        text-shadow: #8ab648 1px 0px;
    }

    .read-more-link {
        cursor: pointer;
        color: #8BC34A !important;
        -webkit-text-fill-color: #8BC34A;
        text-decoration: underline;
        user-select: none; /* Prevents text selection on double-click */
        text-shadow: #8ab648 1px 0px;
    }

}


/*Desktop*/
@media screen and (min-width: 1024px) {
    /*Home Page CSS*/
    .rhk-title-span {
        --min: 1.0vw;
        --val: 2.0vw;
        --max: 16vw;
        position: relative;
        top: -1vw;
        vertical-align: middle;
        text-align: center;
        width: 100%;
    }
    
    .RHKcol1Cross {
        color: #1A3460;
        position: relative;
        --min: 1vw;
        --val: 7.25vw;
        --max: 30vw;
        top: 0.5vw;
        left: 9vw;
    }

    .RHK_OM {
        color: white;
        --min: 1vw;
        --val: 2.75vw;
        --max: 20vw;
        position: relative;
        top: -5.5vw;
        left: -1vw;
        width: 100%;
        height: 100%;
    }

    .RHKcol1Chevron {
        --min: 1vw;
        --val: 6.5vw;
        --max: 20vw;
        color: #1A3460;
        position: relative;
        top: -0.75vw;
        left: 0.5vw;
    }

    .RHK_OV {
        color: white;
        --min: 1vw;
        --val: 2.75vw;
        --max: 20vw;
        position: relative;
        top: -7.25vw;
        left: 1.25vw;
        width: 100%;
        height: 100%;
    }

    .RHK_OMW_head {
        color: white;
        font-family: raleway;
        font-weight: bold;
        --min: 1vw;
        --val: 1.75vw;
        --max: 4vw;
        text-align: center;
        position: relative;
        padding-left: 10%;
        padding-right: 10%;
    }

    .RHK_OMW {
        color: white;
        font-family: raleway;
        --min: 0.5vw;
        --val: 1.5vw;
        --max: 5.5vw;
        text-align: center;
        margin: auto;
        position: relative;
        height: 100%;
        top: -0.5vw;
    }

    .RHK_OVW_head {
        color: white;
        font-family: raleway;
        font-weight: bold;
        --min: 1vw;
        --val: 1.75vw;
        --max: 4vw;
        text-align: center;
        position: relative;
        padding-left: 10%;
        padding-right: 10%;
    }

    .RHK_OVW {
        color: white;
        --min: 0.5vw;
        --val: 1.5vw;
        --max: 5.5vw;
        text-align: center;
        position: relative;
        margin: auto;
    }

    .RHK_SupportTitle {
        color: black;
        --min: 1vw;
        --val: 1.75vw;
        --max: 4vw;
        margin: auto;
        text-align: center;
    }

    .RHK_SupportWords {
        color: black;
        --min: 0.5vw;
        --val: 1.5vw;
        --max: 5.5vw;
        margin: auto;
        text-align: center;
    }

    .footerimg {
        background-position: center;
        background-size: cover;
        background-image: url("/content/images/KerrvilleMissionCross.png");
        object-fit: cover;
        min-height: 75vw;
        position: relative
    }

    /*Faith*/
    .rhk_faith_doctrinal_img {
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url("/content/images/KerrvilleMissionOutlookSunSet.png");
        position: relative;
        min-height: 95.25vw;
               
    }

    .rhk_faith_doctrinal_diffuse {
        background-color: hsl(213, 56%, 40%, 0.62);
        top: 11vw;
        position:relative;
        
    }

    .rhk_faith_doctrinal-head {
        --min: 1.5vw;
        --val: 3vw;
        --max: 6.5vw;
        text-align: center;
        text-shadow: black 2px 2px;
        color: white;
    }

    .rhk_faith_doctrinal-head3 {
        --min: 1.5vw;
        --val: 2.25vw;
        --max: 6.5vw;
        text-shadow: black 2px 2px;
        color: white;
    }

    .rhk_faith_doctrinal-words {
        --min: 1.5vw;
        --val: 1.25vw;
        --max: 6.5vw;
        color: white;
        margin-left: 3vw;
        margin-right: 3vw;
    }

    .rhk_faith_doctrinal-w1 {
        text-shadow: black 2px 2px;
        position: relative;
    }


    /*Location Page CSS*/
    .locheaderimg {
        background-position-y: 30%;
        background-position-x: 10%;
        background-repeat: no-repeat;
        background-image: url("/content/images/KerrvilleMissionDownTheStreet.png");
        position: relative;
        min-height: 50vw;
        
    }

    .rhk_diffuse {
        background-color: hsl(213, 56%, 40%, 0.62);
        position: relative;
        width: 95vw;
        top: 5vw;
        padding-left: 1vw;
        padding-right: 5vw;
        padding-top: 1vw;
        padding-bottom: 5vw;
        float: right;
    }

    .rhk_loc_header {
        --min: 3.5vw;
        --val: 5vw;
        --max: 12vw;
        margin: auto;
        text-align: center;
        position: relative;
        text-shadow: #1A3460 2px 2px;
        color: white;
    }

    .rhk_loc_words {
        color: white;
        --min: 1.0vw;
        --val: 2.0vw;
        --max: 6vw;        
        text-align: center;
    }

    .kerrCitymap {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/content/images/CityOfKerrvilleMap.png");
        position: relative;
        min-height: 70vw;
        top: 4vw;
        left: 15vw;        
    }

    .kerrCityMap_rt {
        --min: 1.5vw;
        --val: 2.75vw;
        --max: 30vw;
        position: relative;        
        left: 45vw;
        top: -66vw;
    }

    .kerrCityDetails {
        background-color: hsl(24, 94%, 40%, 0.62);
        --min: 1.5vw;
        --val: 1.0vw;
        --max: 2.5vw;
        position: relative;
        text-align: left;
        top: -70.75vw;
        left: 0vw;
        width: 36.5vw;
        height: 69.5vw;
        padding-left: 1vw;
        padding-right: 5vw;
        padding-top: 24vw;
        padding-bottom: 1vw;        
    }

    /*About Us*/
    .rhk_about_header {
        text-align: center;
        box-sizing: content-box;
    }

    .rhk_about_header_ln1 {
        --min: 1.0vw;
        --val: 2.5vw;
        --max: 4.5vw;
        position: relative;
        
    }

    .rhk_about_header_ln2 {
        --min: 1.0vw;
        --val: 2.5vw;
        --max: 4.5vw;
        position: relative;
        top: -2vw;
    }

    .rhk_about_auw {
        --min: 1.0vw;
        --val: 1.5vw;
        --max: 4.5vw;
        position: relative;
        padding-left: 4.0vw;
        margin-right: 42vw;
        top: 10vw;
        
    }

    .rhk_about_awi {
        content: url("/content/images/About_Todd_Marion.png");
        position: relative;
        left: 60vw;
        top: -9.75vw;
        object-fit:contain;
        max-height: 25vw;
        max-width: 25vw;

    }

    .rhk_about_os_img {
        background-repeat: no-repeat;
        background-image: url("/content/images/KerrvilleMissionCactus.png");
        background-size: cover;
        position: relative;
        min-height: 49vw;
    }

    .rhk_about_os_diffuse {
        background-color: hsl(213, 56%, 40%, 0.62);
        position: relative;
        width: 100%;
        top: 2vw;        
        min-height: 2vw;
        padding-left: 1vw;
        padding-right: 1vw;
        padding-top: 1vw;
        padding-bottom: 1vw;
        color: white;
    }

    .rhk_about_osh {
        text-align: center;
        --min: 1.0vw;
        --val: 3.5vw;
        --max: 4.5vw;
    }

    .rhk_about_osw {
        text-align: center;
        padding-top: 1.25vw;
        --min: 1.0vw;
        --val: 1.5vw;
        --max: 4.5vw;
    }

    .rhk_about_osw1 {
        padding-top: 1.25vw;
    }

    .rhk_about_osw2 {
        padding-top: 1.25vw;
    }

    .rhk_about_osw3 {
        padding-top: 1.25vw;
    }

    .rhk_about_op_img {
        position: relative;
    }

    .rhk_about_op_diffuse {
        background-color: hsl(24, 94%, 40%, 0.62);
        padding-bottom: 2vw;
    }

    .rhk_about_oph {
        color: #1B335E;
        /*text-shadow: white 2px 2px 4px;*/
        text-align: center;
        --min: 1.0vw;
        --val: 3.5vw;
        --max: 4.5vw;
    }

    .rhk_about_opw {
        color: #1A3460;
        /*text-shadow: white 2px 2px 4px;        */
    }

    .rhk_about_opw1 {
        text-align: center;
        /*text-shadow: white 2px 2px 4px;*/
        --min: 1.0vw;
        --val: 2.5vw;
        --max: 4.5vw;
    }

    .rhk_about_opw15 {
        --min: 1.0vw;
        --val: 1.5vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    .rhk_about_opw2 {
        --min: 1.0vw;
        --val: 1.5vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    .rhk_about_opw3 {
        --min: 1.0vw;
        --val: 1.5vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    .rhk_about_opw4 {
        --min: 1.0vw;
        --val: 1.5vw;
        --max: 4.5vw;
        text-align: center;
        padding-top: 1.25vw;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    /*News Page*/
    .sendGrid {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 200%;
    }

    .rhk_sg_signup {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    /*Outreach*/
    .rhk_outreach_page {
        background-color: #29292a;
    }

    .rhk_outreach_flyer {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/content/outreach/072025-RHC-MK-Outreach.png");
        position: relative;
        min-height: 105vw;
    }

    .ocs_rhc_outreach_form {
        position: relative;
        background-color: #ffffff;
        margin-left: 13vh;
        width: 75%;
        overflow-y: auto;
        height: 100%;
        padding: 30px
    }

    .ocs_rhc_outreach_event {
        max-width: 100% !important;
    }

    /*TotallyFree*/
    .rhk_tf_alignments {
        background: black;
    }

    .rhk_tf_text_align {
        justify-content: center;
        align-items: center;
        margin: 3vw;
    }

    .rhk_tf_main_headers2 {
        --min: 1.0vw;
        --val: 6.75vw;
        --max: 8.5vw;
        text-align: center;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_fa_pray {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 6.5vw;
        position: relative;
        top: 4.75vw;
        z-index: 0;
        color: #38B6FF;
    }

    .rhk_tf_main_headers4 {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 6.5vw;
        text-align: center;
        position: relative;
        left: 3vw;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_headers3 {
        --min: 1.0vw;
        --val: 3.75vw;
        --max: 5.5vw;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_body {
        margin: 2vw;
        --min: 1.0vw;
        --val: 1.5vw;
        --max: 2.5vw;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_headers {
        --min: 1.0vw;
        --val: 7.75vw;
        --max: 8.5vw;
        color: black;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_footer {
        --min: 1.0vw;
        --val: 4.75vw;
        --max: 5.5vw;
        color: black;
        background-image: linear-gradient(to bottom, #8AB648, #38B6FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .rhk_tf_footer_body {
        --min: 1.0vw;
        --val: 2.75vw;
        --max: 3.5vw;
        text-align: center
    }

    /*read more fancy stuff*/
    .rhk_tf_control_panel {
        /*background-color: rgba(255, 255, 255, 0.5);*/
    }

    .h-divider .shadow {
        overflow: hidden;
        height: 30px;
    }

    .h-divider .shadow:after {
        content: '';
        display: block;
        margin: -25px auto 0;
        width: 100%;
        height: 25px;
        border-radius: 125px/12px;
        box-shadow: 0 0 18px #38B6FF;
    }

    .h-divider .text {
        width: 100px;
        height: 45px;
        padding: 10px;
        position: absolute;
        bottom: 100%;
        margin-bottom: -33px;
        left: 50%;
        margin-left: -60px;
        border-radius: 100%;
        box-shadow: 0 2px 4px #999;
        background: #38B6FF;
    }

    .h-divider .text i {
        position: absolute;
        top: 4px;
        bottom: 4px;
        left: 4px;
        right: 4px;
        border-radius: 100%;
        border: 1px dashed #aaa;
        text-align: center;
        line-height: 50px;
        font-style: normal;
        color: #38B6FF;
    }

    .h-divider .text2 {
        width: 70px;
        height: 70px;
        position: absolute;
        bottom: 100%;
        margin-bottom: -35px;
        left: 50%;
        margin-left: -25px;
        border-radius: 100%;
        box-shadow: 0 2px 4px #999;
        background: #38B6FF;
    }

    .h-divider img {
        position: absolute;
        margin: 4px;
        max-width: 60px;
        border-radius: 100%;
        border: 1px dashed #aaa;
    }

    /*modal controls*/
    .modal-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1050;
    }

    .modal-content {
        background: #fff;
        border-radius: 8px;
        max-width: 90vw;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        padding: 1rem;
        position: relative;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .close-btn {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    /*end modal controls*/

    /*end read more fancy stuff*/
    .hidden-text {
        display: none;
        margin-top: 10px;
    }

    .read-more-link {
        cursor: pointer;
        color: #8BC34A !important;
        -webkit-text-fill-color: #8BC34A;
        text-decoration: underline;
        text-shadow: #8ab648 1px 0px;
    }

    .read-more-link {
        cursor: pointer;
        color: #8BC34A !important;
        -webkit-text-fill-color: #8BC34A;
        text-decoration: underline;
        user-select: none; /* Prevents text selection on double-click */
        text-shadow: #8ab648 1px 0px;
    }

}

.RHK_GetInvolved {
    --min: 3.5vw;
    --val: 4vw;
    --max: 7vw;
    top: 5vw;
    margin: auto;
    text-align: center;
    position: relative;
    text-shadow: #1A3460 2px 2px;
    color: white;
}

.RHK_Prayer {
    background-color: hsl(20, 12%, 96%, 0.5);
    position: relative;
    margin: auto;
    width: 90vw;
    top: 8vw;
    padding-left: 1vw;
    padding-right: 1vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
}

.RHK_Finacial {
    background-color: hsl(20, 12%, 96%, 0.5);
    position: relative;
    margin: auto;
    width: 90vw;
    top: 10vw;
    padding-left: 1vw;
    padding-right: 1vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
}

.RHK_Practical {
    background-color: hsl(20, 12%, 96%, 0.5);
    position: relative;
    margin: auto;
    width: 90vw;
    top: 12vw;
    padding-left: 1vw;
    padding-right:1vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
}

.rhk_whole-page {
    overflow: hidden;
}

/*Test Code*/
/*.rhk_div_issue {
    display: flex;
    flex-direction: column
}*/

/*Code for verse link*/
.verse-link {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    -webkit-text-fill-color: #8BC34A;
}

.verse-link:hover {
    color: #0056b3;
}

.rhk_outreach_alert {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 2rem);
    font-weight: bold;
    color: #b22222;
    background: #fffbe6;
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 1.2em 0.8em;
    margin: 1.5em auto;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.08);
    max-width: 900px;
    transition: background 0.3s, color 0.3s;
}

.rhk_outreach_address_box {
    display: flex;
    align-items: center; /* Vertically center icon and text */
    gap: 1rem;
    margin: 2rem auto 0 auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem;
    border-radius: 8px;
    max-width: 520px;
    letter-spacing: 0.02em;
    border: 2px solid #333333;
}

.rhk_outreach_address {    
    color: #222;
    font-weight: bold;
    font-size: 1.25rem;
    text-align: center; /* Optional: left-align text */
}

.rhk_outreach_loc_icon {
    font-size: 4rem;
    color: #333333;
    position: relative;
}

.location-section {
    max-width: 90vw;
    margin: 2rem auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-title {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    text-align: center;
}

.location-time {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    text-align: center;
}

.location-address-block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}

/* Larger font sizes for desktop */
@media (min-width: 1024px) {
    .location-title {
        font-size: 2.5rem;
    }
    .location-time {
        font-size: 1.75rem;
    }
    .location-address {
        font-size: 1.5rem;
    }
}

.location-dot-icon {
    font-size: 3rem;
    color: #2c3e50;
    margin-right: 1rem;
    margin-top: 1rem;
    flex-shrink: 0;
}

.location-address {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.5;
}

    .location-address a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }

        .location-address a:hover {
            color: #0077cc;
            text-decoration: underline;
        }

/* Responsive adjustments */
@media (max-width: 00px) {
    .location-section {
        max-width: 95vw;
        padding: 1.2rem 0.5rem;
    }

    .location-address-block {
        flex-direction: column;
        align-items: center;
    }

    .location-dot-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}