/* ===== LAYOUT FIXES (Astra container overrides) ===== */
body.single-post .site-content .ast-container {
    display: block !important;
}

/* Full-bleed: break sections out of Astra's max-width container, edge to edge */
.manor-full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ===== HERO ===== */
.manor-hero-wrap {
    position: relative;
}
.manor-post-hero {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
}
.manor-post-hero-card {
    background: #F7F5EC; /* EDIT: match your exact cream */
    padding: 40px 20px 44px;
    text-align: center;
}
.manor-post-hero-meta {
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #8c523b; /* EDIT: match your accent color */
}
.manor-post-hero-title {
    font-size: 2.6rem;
    font-style: italic;
    font-family: Georgia, serif;
    color: #2c2a26;
    margin: 0 0 20px;
}
.manor-post-hero-divider {
    width: 40px;
    height: 1px;
    background: #8c523b;
    margin: 0 auto;
}
.manor-post-hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: #5f5e58;
    margin-top: 20px;
}

@media (max-width: 700px) {
    .manor-post-hero {
        height: 260px;
    }
    .manor-post-hero-card {
        padding: 30px 20px 32px;
    }
    .manor-post-hero-title {
        font-size: 2rem;
    }
}

/* ===== LAYOUT: rail + content ===== */
.manor-post-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}
.manor-post-rail h4 {
    color: #8c523b;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.manor-post-rail ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}
.manor-post-rail li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.manor-post-rail a {
    text-decoration: none;
}
.manor-post-content {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
}

.manor-share-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.manor-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .manor-post-layout {
        grid-template-columns: 1fr;
    }
    .manor-share-list,
    .manor-location-list {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 20px;
    }
    .manor-share-list li,
    .manor-location-list li {
        margin: 0;
    }
}

/* ===== BLOG TEXT AREA BACKGROUND ===== */
body.single-post .site-content,
body.single-post .ast-container,
body.single-post #primary,
body.single-post .manor-post-layout,
body.single-post .manor-also-like {
    background-color: #F7F5EC;
}

/* ===== YOU MAY ALSO LIKE ===== */
.manor-also-like {
    border-top: 1px solid #ddd;
    padding: 40px 20px;
}
.manor-also-like-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.manor-also-like-label {
    color: #8c523b;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}
.manor-also-like-links a {
    text-decoration: underline;
    margin-right: 25px;
    font-weight: 500;
}

/* ===== CTA BANNER ===== */
.manor-cta-banner {
    background: #8c523b; /* EDIT: match your exact brand brown */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}
.manor-cta-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}
.manor-cta-heading {
    font-size: 2.2rem;
    font-family: Georgia, serif;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #fff;
}
.manor-cta-heading em {
    font-style: italic;
}
.manor-cta-button {
    display: inline-block;
    background: #fff;
    color: #8c523b;
    padding: 15px 35px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
}