.djm-single-post {
    padding: 140px 0 60px;
}
.djm-post-header {
    text-align: center;
    margin-bottom: 30px;
}
.djm-post-categories {
    margin-bottom: 15px;
}
.djm-post-category {
    display: inline-block;
    background: var(--gl-gold, #9D7539);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 5px;
    transition: background 0.3s;
}
.djm-post-category:hover {
    background: var(--gl-text, #474747);
}
.djm-post-title {
    font-size: 2.5rem;
    color: var(--gl-text, #474747);
    margin-bottom: 20px;
}
.djm-post-meta {
    font-size: 0.95rem;
    color: #777;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Hero Block */
.djm-post-hero-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.djm-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.djm-post-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4) 60%, transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.djm-post-hero-overlay .djm-post-title {
    color: #fff;
    margin-bottom: 15px;
}
.djm-post-hero-overlay .djm-post-meta {
    color: #ddd;
    justify-content: flex-start;
}

/* Content */
.djm-post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gl-text, #474747);
}
.djm-post-content h2, .djm-post-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--gl-text, #474747);
}
.djm-post-content p {
    margin-bottom: 1.5em;
}
.djm-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}
.djm-post-content a {
    color: var(--gl-gold, #9D7539);
    text-decoration: underline;
}

/* CTA Bar */
.djm-post-cta {
    margin-top: 60px;
    padding: 50px 40px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--gl-gold, #9D7539);
}
.djm-cta-title {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--gl-text, #474747);
}
.djm-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gl-gold, #9D7539);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}
.djm-cta-btn:hover {
    background: var(--gl-gold-hover, #b08a4f);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .djm-post-title {
        font-size: 1.8rem;
    }
    .djm-single-post {
        padding: 100px 0 30px;
    }
    .djm-post-hero-inner {
        min-height: 350px;
    }
    .djm-post-hero-overlay {
        padding: 50px 20px 20px;
    }
    .djm-post-cta {
        padding: 30px 20px;
    }
    .djm-cta-title {
        font-size: 1.5rem;
    }
}
