/* ===================================
   Single Post Page Styles
   =================================== */

.single-post-section {
    background: #020617;
    padding: 100px 0;
}

.single-post-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Post Content */
.post-content {
    color: #94a3b8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.post-content p {
    margin-bottom: 30px;
}

.post-intro {
    font-size: 20px;
    color: #cbd5e1;
    /* Lighter text for intro */
}

.post-image-wrapper {
    margin: 40px 0;
    border-radius: 24px;
    overflow: hidden;
}

.post-detail-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Share Section */
.post-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.share-label {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.share-icons {
    display: flex;
    gap: 15px;
}

.share-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: #38bdf8;
    color: #0f172a;
    transform: translateY(-3px);
}

/* Divider */
.post-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

/* Leave a Reply */
.leave-reply-section {
    margin-bottom: 40px;
}

.reply-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.reply-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.reply-form .form-group {
    margin-bottom: 25px;
}

.reply-form label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.reply-form input,
.reply-form textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.reply-form input:focus,
.reply-form textarea:focus {
    outline: none;
    border-color: #38bdf8;
    background: rgba(15, 23, 42, 0.8);
}

.reply-form textarea {
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #38bdf8;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.form-check label {
    margin-bottom: 0;
    font-weight: 400;
    color: #94a3b8;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .post-content {
        font-size: 16px;
    }

    .post-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .reply-title {
        font-size: 26px;
    }
}