/* ========================================
   SINGLE POST STYLES - FULL WIDTH
   ======================================== */

.single-post .site-main,
.page .site-main {
    max-width: 100%;          /* Full width */
    margin: 60px auto;
    padding: 0 40px;          /* Padding samping yang nyaman */
}

/* Untuk konten artikel tetap terbaca, kita batasi lebar paragraf */
.entry-content {
    max-width: 900px;         /* Lebar nyaman untuk membaca */
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

/* Gambar dan elemen lain bisa full */
.entry-content img,
.entry-content figure,
.entry-content .wp-block-image {
    max-width: 100%;
    height: auto;
}

/* Sisanya tetap sama */
.entry-header {
    max-width: 900px;
    margin: 0 auto 30px;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #64748b;
    font-size: 14px;
}

.entry-meta a {
    color: #6366f1;
}

.post-thumbnail {
    margin: 0 0 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.entry-footer {
    max-width: 900px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.entry-footer a {
    color: #6366f1;
}

.post-navigation {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    max-width: 45%;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.post-navigation .nav-title {
    font-weight: 600;
    color: #1a1a2e;
}

.post-navigation a:hover .nav-title {
    color: #6366f1;
}

/* Comments */
.comments-area {
    max-width: 900px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.comments-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.comment:last-child {
    border-bottom: none;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 700;
    color: #1a1a2e;
}

.comment-metadata {
    font-size: 13px;
    color: #94a3b8;
}

.comment-content {
    padding-left: 56px;
}

.comment-respond {
    margin-top: 40px;
}

.comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: #6366f1;
    outline: none;
}

.comment-form .form-submit {
    margin-top: 16px;
}

.comment-form .submit {
    padding: 12px 28px;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.comment-form .submit:hover {
    background: #4f46e5;
}

/* Responsive */
@media (max-width: 768px) {
    .single-post .site-main,
    .page .site-main {
        padding: 0 20px;
        margin: 40px auto;
    }

    .entry-title {
        font-size: 28px;
    }

    .entry-meta {
        font-size: 13px;
        gap: 10px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 16px;
    }

    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        max-width: 100%;
    }

    .comment-content {
        padding-left: 0;
    }

    .entry-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 24px;
    }

    .single-post .site-main,
    .page .site-main {
        padding: 0 16px;
    }
}
/* ============================================================
   SINGLE POST – ELEGANT STYLING (Prev/Next & Tags)
   ============================================================ */

/* --- PREV / NEXT (Left & Right) --- */
.kostum-prev-next {
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 2px solid rgba(201, 169, 110, 0.25);
    position: relative;
}

.kostum-prev-next::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #c9a96e;
}

.kostum-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    position: relative;
}

.nav-previous a::after,
.nav-next a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a96e;
    transition: width 0.4s ease;
}

.nav-previous a:hover::after,
.nav-next a:hover::after {
    width: 100%;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: #b8954f;
    transform: translateY(-2px);
}

.nav-previous a:hover {
    transform: translateX(-4px) translateY(-2px);
}

.nav-next a:hover {
    transform: translateX(4px) translateY(-2px);
}

/* --- TAGS (Rata Kiri) --- */
.kostum-tags {
    margin-top: 1.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.kostum-tags-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    justify-content: flex-start;
}

.tags-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-right: 0.3rem;
    letter-spacing: 0.5px;
}

.tag-item a {
    display: inline-block;
    padding: 0.3rem 1.2rem;
    background: #f9f6f0;
    color: #4a4a4a;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid #ede8df;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.3px;
    text-transform: lowercase;
}

.tag-item a:hover {
    background: #c9a96e;
    color: #ffffff;
    border-color: #c9a96e;
    box-shadow: 0 4px 14px rgba(201, 169, 110, 0.35);
    transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .kostum-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .nav-previous a,
    .nav-next a {
        font-size: 0.95rem;
        width: 100%;
        justify-content: flex-start;
    }

    .kostum-prev-next::before {
        width: 40px;
    }

    .tag-item a {
        font-size: 0.75rem;
        padding: 0.2rem 1rem;
    }

    .tags-label {
        font-size: 0.85rem;
        width: 100%;
        margin-bottom: 0.2rem;
    }
}
/* ============================================================
   CTA SECTION
   ============================================================ */
.single-cta {
    padding: 60px 20px;
    text-align: center;
    background: #f9f6f0;
    border-top: 3px solid #c9a96e;
    margin-top: 40px;
}
.single-cta .cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.single-cta .cta-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.single-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.single-cta .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.single-cta .btn-primary {
    background: #c9a96e;
    color: #fff;
}
.single-cta .btn-primary:hover {
    background: #b8954f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.4);
}
.single-cta .btn-secondary {
    background: transparent;
    color: #c9a96e;
    border: 2px solid #c9a96e;
}
.single-cta .btn-secondary:hover {
    background: #c9a96e;
    color: #fff;
    transform: translateY(-3px);
}
.single-cta .btn-tertiary {
    background: #1a1a2e;
    color: #fff;
}
.single-cta .btn-tertiary:hover {
    background: #2a2a4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.3);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .single-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .single-cta .cta-btn {
        width: 80%;
        text-align: center;
    }
    .single-cta .cta-title {
        font-size: 1.8rem;
    }
}

