/* ==========================================
   SINGLE POST PAGE STYLES (single.css)
   ========================================== */

/* Card Container */
.single-post-card {
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #ffffff;
}

/* Featured Image Styling */
.post-featured-image {
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

/* Typography & Content Layout */
.single-post-title {
    color: #0f172a;
    font-size: 2.25rem;
    line-height: 1.25;
}

.single-post-meta {
    font-size: 0.875rem;
    color: #64748b;
}

.single-post-meta i {
    color: #3b82f6; /* Icon accent color */
}

/* Body Content Formatting */
.single-entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
}

.single-entry-content p {
    margin-bottom: 1.5rem;
}

.single-entry-content h2, 
.single-entry-content h3, 
.single-entry-content h4 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.single-entry-content blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.25rem;
    font-style: italic;
    color: #475569;
    margin: 1.75rem 0;
}

/* Category & Tag Badges */
.single-category-badge {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.4em 0.75em;
}

.single-tag-link {
    transition: all 0.2s ease-in-out;
}

.single-tag-link:hover {
    background-color: #0f172a !important;
    color: #ffffff !important;
}

