.info-hero {
    padding: 10vh 5vw;
    background: var(--beige);
    /*margin-top: var(--nav-height-mobile);*/
    margin-top: 40px;
}

.info-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-top: 1.5rem;
    color: var(--black);
}

.info-content-section {
    padding: 80px 5% 120px;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
}

.text-block {
    margin-bottom: 80px;
}

.text-block:last-child {
    margin-bottom: 0;
}

.text-block h3+p,
.text-block p+p,
.text-block p+ul,
.text-block ul+p {
    margin-top: 1.5rem;
}

.serif-sub {
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    color: var(--black);
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    display: block;
}

.info-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
}

.policy-list,
.delivery-rates {
    list-style: none;
    padding: 0;
}

.policy-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 1rem;
}

.policy-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #ccc;
}

.delivery-rates li {
    padding: 30px;
    border: 1px solid #eee;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s ease;
}

.delivery-rates li:hover {
    border-color: var(--black);
}

.contact-box {
    padding: 40px;
    background: #fafafa;
    border: 1px solid #eee;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 30px;
}

.contact-box a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.disclaimer-text {
    font-size: 13px !important;
    color: #999 !important;
    font-style: italic;
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

@media (min-width: 1024px) {
    .info-hero {
        /*margin-top: var(--nav-height-desktop);*/
        margin-top: 69px;
    }

    .info-title {
        text-align: center;
    }

    .info-content-section {
        padding: 120px 5%;
    }

    .serif-sub {
        font-size: 32px;
    }
}