/* Basic reset / typography */
body {
    font-family: "Georgia", "Times New Roman", serif;
    background-color: #f3eadc;
    color: #333;
    line-height: 1.6;
}

/* Header / hero */
.site-header {
    background-color: #f3eadc;
}

.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-image {
    object-fit: cover;
    max-height: 340px;
}

.hero-title-wrapper {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fefefe;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Nav */
.main-nav {
    background-color: #0d2242;
}

.main-nav .nav-link {
    color: #fefefe;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: #ffd766;
}

.btn-buy {
    background-color: #f15a40;
    border-color: #f15a40;
    font-weight: 600;
}

.btn-buy:hover {
    background-color: #d24731;
    border-color: #d24731;
}

/* CTA section */
.cta-section {
    background-color: #ffffff;
}

.cta-item {
    padding: 1.5rem 1rem 2rem;
}

.cta-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.cta-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #777;
}

.cta-btn {
    margin-top: 0.75rem;
}

/* Main content */
.main-content-section {
    background-color: #f3eadc;
}

.section-heading {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background-color: #0d2242;
    color: #fefefe;
}

.footer-flower {
    color: #ffb347;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .cta-image {
        width: 150px;
        height: 150px;
    }
}
<style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Georgia, "Times New Roman", serif;
            background: #f1f1f1;
            color: #222;
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Header / hero */

        header {
            background: #123661 url("header-illustration.jpg") no-repeat center top;
            background-size: cover;
            color: #fff;
        }

        .header-inner {
            max-width: 1024px;
            margin: 0 auto;
            padding: 40px 20px 200px;
        }

        .site-title {
            font-size: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        }

        .site-subtitle {
            font-size: 18px;
            margin-top: 6px;
        }

        /* Top navigation */

        .top-nav {
            background: #0c2d54;
        }

        .top-nav-inner {
            max-width: 1024px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0 20px;
        }

        .top-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }

        .top-nav li {
            margin-right: 24px;
        }

        .top-nav a {
            display: block;
            padding: 12px 0;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #f4f4f4;
        }

        .top-nav a:hover {
            color: #fff;
        }

        .top-nav .nav-spacer {
            flex: 1;
        }

        .top-nav .nav-cta a {
            background: #e5594d;
            padding: 8px 16px;
            border-radius: 3px;
            margin-left: 16px;
            font-size: 12px;
        }

        .top-nav .nav-cta a:hover {
            background: #c7473d;
        }

        /* Layout */

        main {
            max-width: 900px;
            margin: 40px auto 60px;
            padding: 30px 25px 40px;
            background: #ffffff;
            box-shadow: 0 0 6px rgba(0,0,0,0.07);
        }

        main p {
            margin-bottom: 18px;
            font-size: 15px;
        }

        main p.intro {
            font-size: 16px;
        }

        main h1 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        /* Book promo block */

        .book-promo {
            float: right;
            width: 190px;
            margin: 10px 0 20px 30px;
            text-align: center;
        }

        .book-promo .badge {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: #183b6e;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            text-transform: uppercase;
            font-weight: bold;
            line-height: 1.2;
        }

        .book-promo img {
            max-width: 100%;
            display: block;
            margin: 0 auto;
        }

        .book-promo span {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #666;
        }

        /* Footer */

        footer {
            background: #222;
            color: #aaa;
            font-size: 11px;
        }

        .footer-inner {
            max-width: 1024px;
            margin: 0 auto;
            padding: 10px 20px;
            text-align: center;
        }

        /* Responsive */

        @media (max-width: 768px) {

            .header-inner {
                padding: 30px 15px 140px;
            }

            .site-title {
                font-size: 30px;
            }

            .top-nav-inner {
                flex-wrap: wrap;
            }

            .top-nav ul {
                flex-wrap: wrap;
                margin: 0 -10px;
            }

            .top-nav li {
                margin: 0 10px;
            }

            .top-nav .nav-spacer {
                display: none;
            }

            .top-nav .nav-cta {
                width: 100%;
                margin: 4px 0 8px;
                text-align: right;
            }

            .book-promo {
                float: none;
                margin: 0 auto 25px;
            }
        }
    </style>
    /* Base */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background-color: #f3eadc;
    color: #333;
    line-height: 1.7;
}

/* Header / hero */

.site-header {
    background-color: #f3eadc;
}

.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-image {
    max-height: 320px;
    object-fit: cover;
}

.hero-title-wrapper {
    position: absolute;
    left: 3%;
    top: 10%;
}

.hero-title {
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #133461;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Navigation */

.main-nav {
    background-color: #133461;
}

.main-nav .nav-link {
    color: #f8f8f8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 0.9rem 1.2rem;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffe59c;
}

.btn-buy {
    background-color: #e25a3a;
    border-radius: 0;
    font-weight: 600;
}

.btn-buy:hover {
    background-color: #c6482c;
}

/* About Eric section */

.about-eric-section {
    background-color: #f3eadc;
}

.about-container {
    max-width: 980px;
    background-color: #ffffff;
    padding: 3rem 3rem 3.5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.about-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 2rem;
}

/* Inline doodle image */

.about-inline-figure {
    float: right;
    width: 150px;
    margin: 0 0 1.5rem 2rem;
    text-align: center;
}

.about-inline-img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.about-inline-caption {
    font-size: 0.75rem;
    margin-top: 0.4rem;
    color: #666;
}

/* Main text */

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
}

/* Charlie block */

.charlie-figure {
    float: left;
    width: 210px;
    margin: 0.5rem 2rem 1.5rem 0;
    text-align: center;
}

.charlie-img {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.charlie-caption {
    font-size: 0.78rem;
    margin-top: 0.4rem;
    color: #555;
}

/* Lyrics */

.lyrics-block {
    margin: 1.2rem 0 1.5rem;
    padding: 1rem 1.5rem;
    border-left: 4px solid #133461;
    background-color: #f7f2e6;
    font-size: 0.95rem;
    font-style: italic;
}

/* CTA button */

.about-cta-wrapper {
    margin-top: 2rem;
}

.about-cta-btn {
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Footer */

.site-footer {
    background-color: #133461;
    color: #f7f7f7;
}

.footer-flower {
    color: #ffb347;
}

/* Responsive */

@media (max-width: 991.98px) {
    .about-container {
        padding: 2rem 1.5rem 2.5rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 767.98px) {
    .about-inline-figure,
    .charlie-figure {
        float: none;
        width: 70%;
        margin: 0 auto 1.5rem;
    }

    .about-title {
        text-align: center;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .about-inline-figure,
    .charlie-figure {
        width: 80%;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 0.14em;
    }
}
/* Reviews page */

.reviews-section {
    background-color: #f3eadc;
}

.reviews-container {
    max-width: 980px;
    background-color: #ffffff;
    padding: 3rem 3rem 3.5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.reviews-title {
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 2rem;
}

.reviews-text p {
    font-size: 0.98rem;
    margin-bottom: 1.4rem;
}

.reviews-text em {
    font-style: italic;
}

.review-credit {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

/* Sidebar */

.reviews-sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-book .card-img-top {
    object-fit: cover;
}

.sidebar-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.5rem;
}

.sidebar-body {
    font-size: 0.9rem;
    color: #555;
}

/* Responsive tweaks */

@media (max-width: 991.98px) {
    .reviews-container {
        padding: 2.5rem 1.5rem 3rem;
    }

    .reviews-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .reviews-container {
        padding: 2rem 1.25rem 2.5rem;
    }

    .reviews-title {
        text-align: center;
    }
}
/* Missed (Vinyl) Connections page */

.missed-section {
    background-color: #f3eadc;
}

.missed-container {
    max-width: 1040px;
    background-color: #ffffff;
    padding: 3rem 3rem 3.5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.missed-title {
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-align: center;
    margin-bottom: 2.5rem;
}

.missed-intro p {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
}

/* Sidebar */

.missed-sidebar {
    border: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
}

.missed-sidebar .card-body {
    padding: 1.25rem 1.25rem 1.75rem;
}

.sidebar-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
}

.sidebar-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* List items */

.missed-list {
    border-top: 1px solid #ddd2b8;
    padding-top: 2rem;
}

.connection-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid #eee1c8;
}

.connection-meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
}

.connection-label {
    font-weight: 700;
}

.connection-value {
    margin: 0.35rem 0 0.5rem;
}

.connection-status {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.connection-status-missing {
    background-color: #fce4e4;
    color: #b93737;
}

.connection-status-found {
    background-color: #e4f7ea;
    color: #2f7f47;
}

.connection-cover img {
    border-radius: 2px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.connection-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.connection-body {
    font-size: 0.93rem;
}

/* Responsive */

@media (max-width: 991.98px) {
    .missed-container {
        padding: 2.5rem 1.5rem 3rem;
    }
}

@media (max-width: 767.98px) {
    .missed-sidebar {
        margin-top: 1rem;
    }

    .connection-item {
        padding: 1.25rem 0;
    }
}

@media (max-width: 575.98px) {
    .missed-container {
        padding: 2rem 1.25rem 2.5rem;
    }
}
/* Self‑Interview page */

.self-section {
    background-color: #f3eadc;
}

.self-container {
    max-width: 980px;
    background-color: #ffffff;
    padding: 3rem 3rem 3.5rem;
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.self-title {
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-align: center;
    margin-bottom: 2.5rem;
}

.qa-item + .qa-item {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid #eee1c8;
}

.qa-question {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #133461;
}

.qa-answer {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Адаптив */

@media (max-width: 991.98px) {
    .self-container {
        padding: 2.5rem 1.5rem 3rem;
    }
}

@media (max-width: 575.98px) {
    .self-container {
        padding: 2rem 1.25rem 2.5rem;
    }

    .self-title {
        font-size: 1.6rem;
        letter-spacing: 0.15em;
    }
}
/* ===========================
   MISSED (VINYL) CONNECTIONS
   =========================== */

.missed-connections-section {
    background-color: #f3eadc;
}

.missed-container {
    max-width: 1140px;
    background-color: #ffffff;
    padding: 3rem 3rem 4rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.missed-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 2rem;
    color: #133461;
}

.missed-intro {
    padding: 1.5rem;
    background-color: #f7f2e6;
    border-left: 4px solid #133461;
}

.missed-intro p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.missed-intro p:last-child {
    margin-bottom: 0;
}

/* Posts list */

.connections-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.connection-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.connection-item:last-child {
    border-bottom: none;
}

.connection-thumb {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.connection-heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.connection-meta {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.6rem;
}

.connection-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.connection-link {
    font-size: 0.9rem;
    color: #e25a3a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.connection-link:hover {
    color: #c6482c;
}

/* Pagination */

.connections-pagination .page-link {
    color: #133461;
    border-color: #ddd;
}

.connections-pagination .page-item.active .page-link {
    background-color: #133461;
    border-color: #133461;
}

.connections-pagination .page-link:hover {
    color: #e25a3a;
}

/* Sidebar */

.connections-sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-widget {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

.widget-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    color: #133461;
}

.widget-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.search-form .form-control {
    border-right: none;
}

.search-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.recent-posts-list,
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li,
.categories-list li {
    margin-bottom: 0.6rem;
}

.recent-posts-list a,
.categories-list a {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-posts-list a:hover,
.categories-list a:hover {
    color: #e25a3a;
}

/* Responsive */

@media (max-width: 991.98px) {
    .missed-container {
        padding: 2.5rem 1.5rem 3rem;
    }

    .connections-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .connection-item .row {
        flex-direction: column;
    }

    .connection-item .col-4 {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .missed-container {
        padding: 2rem 1.25rem 2.5rem;
    }

    .missed-title {
        text-align: center;
        font-size: 1.6rem;
    }

    .connection-heading {
        font-size: 1rem;
    }
}
/* ===========================
   Single Missed Connection
   =========================== */

.single-missed-section {
    background-color: #f3eadc;
}

.single-missed-container {
    max-width: 1140px;
    background-color: #ffffff;
    padding: 3rem 3rem 4rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.single-nav-top {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.single-prev-link {
    color: #777;
    text-decoration: none;
}

.single-prev-link:hover {
    color: #e25a3a;
}

.single-missed-title {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    color: #133461;
}

.single-missed-body p {
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Share box */

.single-share-box {
    padding: 1rem 1.25rem;
    border: 1px solid #e2e2e2;
    background-color: #fafafa;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.single-share-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.single-share-icons a {
    display: inline-block;
    font-size: 0.8rem;
    margin-left: 0.4rem;
    padding: 0.25rem 0.45rem;
    border-radius: 3px;
    border: 1px solid #ccc;
    color: #555;
    text-decoration: none;
}

.single-share-icons a:hover {
    background-color: #133461;
    color: #fff;
}

/* Comments note */

.single-comments-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* Sidebar lists reuse общие sidebar-widget стили,
   только добавим специфичные списки */

.archives-list,
.meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archives-list li,
.meta-list li {
    margin-bottom: 0.45rem;
}

.archives-list a,
.meta-list a {
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
}

.archives-list a:hover,
.meta-list a:hover {
    color: #e25a3a;
}

/* Responsive */

@media (max-width: 991.98px) {
    .single-missed-container {
        padding: 2.5rem 1.5rem 3rem;
    }
}

@media (max-width: 575.98px) {
    .single-missed-container {
        padding: 2rem 1.25rem 2.5rem;
    }

    .single-missed-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .single-share-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}

