/* masthead */
.cd-masthead {
    max-width: 720px;
    margin: 0 auto 24px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cd-masthead-rule {
    width: 100%;
    height: 1px;
    background: var(--text-color);
    opacity: 0.15;
}

.cd-rule-heavy {
    height: 2px;
    opacity: 0.7;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.cd-masthead-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.45;
}

.cd-masthead-dot {
    opacity: 0.3;
}

/* headline */
.cd-headline-block {
    max-width: 720px;
    margin: 0 auto 20px auto;
    text-align: center;
    position: relative;
}

.cd-title-sticker {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-75deg);
    width: 700px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.cd-title,
.cd-deck {
    position: relative;
    z-index: 1;
}

.cd-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cd-deck {
    font-family: 'IM Fell English', Georgia, serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 520px;
    margin: 0 auto;
}

/* body */
.cd-body {
    max-width: 620px;
    margin: 0 auto;
    font-family: 'IM Fell English', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.85;
    text-align: justify;
}

.cd-body p {
    margin-bottom: 1.4em;
    text-indent: 1.8em;
}

.cd-dropcap {
    text-indent: 0 !important;
}

.cd-dropcap::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5em;
    font-weight: 700;
    float: left;
    line-height: 0.72;
    margin-right: 6px;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .cd-body {
        text-align: left;
    }

    .cd-body p {
        text-indent: 0;
    }

    .cd-title {
        font-size: 3rem;
    }
}