/* =========================================
   1. HERO SECTION (Standardized)
   ========================================= */
.site-header {
    background: #000000;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* =========================================
   2. PAGE LAYOUT (Left Sidebar / Right Content)
   ========================================= */
.single-post-page {
    font-family: "Lato", sans-serif;
    color: #000;
    background-color: #fff;
    margin-top: 140px;
}

.post-content-section {
    padding: 80px 0;
}

.post-content-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 1400px) {
    .post-content-section .container {
        padding: 0;
    }
}

.post-layout-wrapper {
    display: flex;
    gap: 30px;
    /* Space between sidebar and content */
}

/* --- Left Side: Sidebar (30%) --- */
.post-sidebar-column {
    width: 30%;
    flex-shrink: 0;
    padding: 10px;
}

.sidebar-widget h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 7.5px;
    text-align: right;
    /* As per your design */
    color: #000;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    /* Align list to right */
}

.recent-posts-list li {
    padding: 12.5px 0;
    border-top: 1px solid #ddd;
}

.recent-posts-list li:first-child {
    border-top: none;
}

.recent-posts-list li a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 400;
    transition: color 0.3s;
}

.recent-posts-list li a:hover {
    color: #E3A507;
    /* Gold hover */
}

/* --- Right Side: Content (70%) --- */
.post-content-column {
    flex-grow: 1;
    width: 70%;
}

/* 1. Title */
.single-post-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
}

/* 2. Meta */
.single-post-meta {
    margin-bottom: 20px;
    font-size: 16px;
}

.meta-cat {
    display: block;
    font-weight: 400;
    color: #000;
    margin: 20px 0;
    font-size: 19px;
}

.meta-date-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.meta-date-wrapper i {
    color: #666;
}

/* 3. The Intro Block (Yellow Border) */
.gold-border-intro {
    border-left: 6px solid #E3A507;
    /* The thick gold border */
    padding-left: 10px;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

.gold-border-intro p {
    margin: 0;
}

/* 4. Featured Image */
.single-post-thumbnail {
    margin-bottom: 30px;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* 5. Main Content */
.entry-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    /* color: #333; */
}

.contact-widget h3 {
    font-size: 25px;
}

.entry-content h2 {
    font-size: 17px;
    margin-top: 40px;
}

.entry-content ul {
    padding: 0 0 0 40px;
    list-style: disc;
}

.entry-content li {
    font-size: 17px;
}

.vish-custom-form input[type="text"],
.vish-custom-form input[type="email"],
.vish-custom-form input[type="tel"],
.vish-custom-form input[type="date"],
.vish-custom-form input[type="time"],
.vish-custom-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
    font-family: 'Lato', sans-serif;
    /* Per your JSON font settings */
}

.vish-form-wrapper {
    max-width: none;
}

/* =========================================
   3. RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .post-layout-wrapper {
        flex-direction: column-reverse;
        /* Put sidebar below content on mobile */
    }

    .post-sidebar-column {
        width: 100%;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }

    .sidebar-widget h3,
    .recent-posts-list {
        text-align: left;
        /* Align left on mobile */
    }

    .post-content-column {
        width: 100%;
    }

    .single-post-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .single-post-page {
        margin-top: 106px;
    }

    .single-post-title {
        font-size: 30px;
    }

    .meta-cat {}

    .entry-content p {}

    .entry-content h2 {}

    .entry-content li {}

    .contact-widget h3 {}

    .gold-border-intro {}

}

@media (max-width: 767px) {
    .single-post-page {
        margin-top: 88px;
    }

    .single-post-title {
        font-size: 26px;
    }

    .meta-cat {

        margin: 20px 0;

    }

    .entry-content p {

        font-size: 17px;

    }

    .entry-content h2 {

        font-size: 17px;

    }

    .entry-content li {

        font-size: 17px;

    }

    .contact-widget h3 {

        font-size: 25px;
    }

    .gold-border-intro {

        font-size: 17px;

    }

}