/* Basic Hero Block - Centralized Title & Constellation Background */

.basic-hero-block {
    width: 100%;
    position: relative;
    background: transparent !important;
    padding: 120px 0; /* Symmetrical padding for a centered look */
    box-sizing: border-box;
    color: var(--nebula-white, #FFFFFF) !important;
    text-align: center;
    margin-top: -2px !important; 
}

/* Typography */
.basic-hero-block h1 {
    color: var(--nebula-white, #FFFFFF) !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto !important;
    max-width: 900px; /* Prevents text from stretching too wide on large screens */
    position: relative;
    z-index: 20;
    word-wrap: break-word;
}

/* Subtitle */
.basic-hero-block .basic-hero__subtitle {
    color: var(--nebula-white, #FFFFFF) !important;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin: 20px auto 0 !important;
    max-width: 800px;
    opacity: 0.9;
}

/* Backgrounds */
.basic-hero-block .hero-bg-panel {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    height: 100%; 
    background-color: var(--nebula-blue, #313A4C);
    z-index: 0;
    overflow: hidden; 
}

.basic-hero-block .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto 100%; 
    background-position: center center; 
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none; 
}

/* Layout Wrappers */
.basic-hero-block .hero__wrap { 
    position: relative; 
    z-index: 10; 
    width: 100%; 
    padding: 0 20px; 
    box-sizing: border-box; 
}

@media screen and (min-width: 1024px) {
    .basic-hero-block .hero__wrap {
        padding: 40px; 
    }
}

.basic-hero-block .hero__inner { 
    max-width: 1540px; 
    width: 100%; 
    margin: 0 auto; 
    box-sizing: border-box; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.basic-hero__content {
    position: relative;
    z-index: 20;
    width: 100%;
}