.generic-inner-hero {
    position: relative;
    height: 325px; /* About 1/3 of the 680px homepage hero */
    overflow: hidden;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generic-inner-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.generic-inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.generic-inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.generic-inner-hero-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: normal;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.55);
}

.generic-inner-hero-subtitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 12px auto 0 auto;
    max-width: 720px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

@media screen and (max-width: 700px) {
    .generic-inner-hero {
        height: 190px;
    }

    .generic-inner-hero-title {
        font-size: 32px;
    }

    .generic-inner-hero-subtitle {
        font-size: 13px;
    }
}