/* =========================================
   1. HERO & PAGE WRAPPER
   ========================================= */
/* .site-header {
    background: #000000;
} */
.site-header {
    background: #1c1c1c;
}

.single-page-custom {
    font-family: "Lato", sans-serif;
    color: #000;
    background-color: #fff;
    margin-top: 180px;
}

.post-content-section {}

.post-content-section .container {
    /* Updated width logic */
    max-width: min(100%, 1140px);
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================================
   2. CENTERED CONTENT LAYOUT
   ========================================= */
.centered-content {
    width: 100%;
    margin: 0 auto;
}

/* =========================================
   3. TYPOGRAPHY & ELEMENTS
   ========================================= */

/* Title */
.single-post-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
}

/* Featured Image */
.single-post-thumbnail {
    margin-bottom: 30px;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Content Blocks */
.entry-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #000;
}

.entry-content h2 {
    font-size: 17px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.entry-content ul {
    padding: 0 0 0 40px;
    list-style: disc;
    margin-bottom: 20px;
}

.entry-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Link Styling */
.entry-content a {
    color: #E3A507;
    text-decoration: underline;
    transition: color 0.3s;
}

.entry-content a:hover {
    color: #000;
}

/* Gold Border Intro */
.gold-border-intro {
    border-left: 6px solid #E3A507;
    padding-left: 10px;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

/* =========================================
   4. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .single-page-custom {
        margin-top: 106px;
    }

    .single-post-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .single-page-custom {
        margin-top: 88px;
    }

    .single-post-title {
        font-size: 26px;
    }

    .entry-content p,
    .entry-content li,
    .entry-content h2 {
        font-size: 17px;
    }

    .gold-border-intro {
        font-size: 17px;
    }
}