.header {
    background: navy;
    color: whitesmoke;
    padding: 2rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    border: 1px solid rgba(135, 206, 250, .25);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(42,45,123,.65) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(5,6,58,.50) 0%, transparent 60%);
    pointer-events: none;
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.brand {
    font-family: 'DM Serif Display', serif;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: lightskyblue;
    margin-bottom: .75rem;
}

.header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.01em;
}

.header h1 em {
    font-style: italic;
    color: lightskyblue;
    text-align: center ;
}

.header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.01em;
}    

.header p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: whitesmoke;
    background: #00a;
    padding: 2rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
}

.meta {
    margin-top: 1.25rem;
    font-size: .8rem;
    color: lightskyblue;
    letter-spacing: .05em;
    text-transform: uppercase;
  }
