/* Explain: Structural layout helpers for editorial spacing */
.editorial-section,
.booking-section {
    position: relative;
}

.editorial-section::before,
.booking-section::before {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 106, 0.5), transparent);
    opacity: 0.36;
}

.info-section {
    background:
        linear-gradient(180deg, rgba(185, 138, 138, 0.08), transparent 48%),
        var(--soft-graphite);
}

.booking-section {
    background:
        radial-gradient(circle at 25% 20%, rgba(200, 169, 106, 0.15), transparent 24rem),
        linear-gradient(135deg, rgba(246, 240, 232, 0.06), rgba(5, 5, 5, 0));
}

.editorial-footer {
    background: var(--ink-black);
}

.section-label-wrap {
    align-self: start;
}

.bio-panel {
    min-width: 0;
}

.campaign-header {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .campaign-header {
        grid-template-columns: 0.55fr 1.45fr;
        align-items: end;
    }
}
