/* ==========================================================================
   RAPIDGEAR — SIMPLE HERO IMAGE + TITLE COMPONENT
   ========================================================================== */

/* Full-width hero image */


.rg-hero-image {
    width: 100vw;
    height: 50vh;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background-position: center 20%;
    padding-top: 0;
    box-shadow: 0 24px 36px -18px rgb(0 0 0 / 0.42);
}

.rg-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: bottom center;
    background-position: center 50%;
}

.page-id-2441 .rg-hero-image img {
    /* Teams Page-specific override (only affects page 2441) */
    object-position: center 30%;
    background-position: center;
}

/* Title + intro block */
.rg-hero-text {
    margin: 20px 0 20px;
    text-align: center;
    max-width: 700px;
}

.rg-hero-text h1 {
    font-size: clamp(2rem, 3vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
    font-style: italic;
    letter-spacing: 0px;
}

.rg-hero-text .hero-intro {
    font-size: 1.1rem;
    color: var(--rg-gray-700);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: left;
}
