/* ===== SINGLE POST PAGE ===== */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.7;
}

/* Close Button */
.close-btn {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 32px;
    text-decoration: none;
    color: #111827;
    background: white;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 1000;
}

.close-btn:hover {
    background: #111827;
    color: white;
}

/* Container */
.single-post {
    max-width: 850px;
    margin: 100px auto 60px auto;
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Featured Image */
.single-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* Title */
.single-post h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Date */
.single-post small {
    display: block;
    margin-bottom: 30px;
    color: #6b7280;
    font-size: 14px;
}

/* Content Styling */
.content h2 {
    margin-top: 30px;
    font-size: 24px;
}

.content h3 {
    margin-top: 25px;
    font-size: 20px;
}

.content p {
    margin-bottom: 18px;
    font-size: 17px;
}

.content ul,
.content ol {
    margin: 20px 0 20px 25px;
}

.content li {
    margin-bottom: 8px;
}

.content blockquote {
    border-left: 4px solid #0d6efd;
    padding: 15px 20px;
    background: #f9fafb;
    margin: 25px 0;
    font-style: italic;
    border-radius: 6px;
}

.content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.content table th,
.content table td {
    border: 1px solid #e5e7eb;
    padding: 12px;
    text-align: left;
}

.content table th {
    background: #f3f4f6;
    font-weight: 600;
}

/* Links */
.content a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .single-post {
        padding: 25px;
        margin: 80px 15px;
    }

    .single-post h1 {
        font-size: 28px;
    }

    .close-btn {
        top: 15px;
        right: 15px;
    }
}