/*--------------------------------------------------------------
# Single Post Page Styling
--------------------------------------------------------------*/

.single-post-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.single-post-container {
    background: #ffffff;
}

/* Single Post Header */
.single-post-page .entry-header {
    margin-bottom: 32px;
}

.article-category-single {
    margin-bottom: 16px;
}

.article-category-single a {
    display: inline-block;
    color: #0066cc;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 4px 12px;
    background: #f0f7ff;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.article-category-single a:hover {
    background: #e0efff;
}

.single-post-page .entry-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.entry-meta-single {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #6e6e73;
}

.meta-separator {
    color: #d0d0d0;
}

/* Featured Image */
.entry-featured-image {
    margin-bottom: 32px;
}

.entry-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Post Content */
.single-post-page .entry-content {
    font-size: 18px;
    line-height: 1.7;
    color: #3f3f42;
}

.single-post-page .entry-content p {
    margin-bottom: 24px;
}

.single-post-page .entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #000000;
}

.single-post-page .entry-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: #000000;
}

.single-post-page .entry-content ul,
.single-post-page .entry-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.single-post-page .entry-content li {
    margin-bottom: 8px;
}

.single-post-page .entry-content blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #4a4a4a;
}

.single-post-page .entry-content a {
    color: #0066cc;
    text-decoration: underline;
}

.single-post-page .entry-content a:hover {
    color: #004499;
}

/* Entry Footer (Tags) */
.entry-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e6e6e6;
}

.post-tags {
    font-size: 15px;
}

.tags-label {
    font-weight: 600;
    color: #3f3f42;
}

.post-tags a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-tags a:hover {
    color: #004499;
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Post Navigation - Beautiful Previous/Next Buttons
--------------------------------------------------------------*/

.post-navigation {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e6e6e6;
    border-bottom: 2px solid #e6e6e6;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.nav-previous,
.nav-next {
    display: block;
}

.nav-previous a,
.nav-next a {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #f8f8f8;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: #ffffff;
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.nav-direction {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
    color: #0066cc;
}

/* Next button - align text to right */
.nav-next a {
    align-items: flex-end;
    text-align: right;
}

/* Only one navigation item */
.post-navigation .nav-links:has(.nav-previous:only-child) {
    grid-template-columns: 1fr;
}

.post-navigation .nav-links:has(.nav-next:only-child) {
    grid-template-columns: 1fr;
}

.post-navigation .nav-links:has(.nav-next:only-child) .nav-next {
    grid-column: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .single-post-page .entry-title {
        font-size: 32px;
    }
    
    .single-post-page .entry-content {
        font-size: 17px;
    }
    
    .post-navigation .nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-navigation .nav-links:has(.nav-next:only-child) .nav-next {
        grid-column: 1;
    }
    
    .nav-next a {
        align-items: flex-start;
        text-align: left;
    }
}

/* Hide default WordPress navigation */
.nav-previous:not(.post-navigation .nav-previous),
.nav-next:not(.post-navigation .nav-next) {
    display: none;
}

/* Main container */
.post-guide-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

/* Data box - Deal boxes and Trust boxes */
.data-box {
    background-color: #1A1D2E;
    padding: 22px 25px;
    margin: 30px 0;
    border-radius: 8px;
    position: relative;
}

.data-box::before {
    content: "💡";
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.2rem;
    background-color: #fff;
    padding: 0 8px;
}

.data-box h2,
.data-box h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.data-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.data-box p:last-child {
    margin-bottom: 0;
}

.data-box ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0;
}

.data-box ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.data-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
}

.data-box a {
    display: inline-block;
    background-color: #fff;
    color: #1A1D2E !important;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    border-radius: 4px;
}

.data-box a:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .post-guide-container {
        padding: 15px;
    }
}
/* ========================================
   SC Author Box - Clean Minimal Style
   ======================================== */

.sc-author-box {
background: #ffffff !important;
	border-radius: 0 !important;
	padding: 30px !important;
	margin: 48px 0 !important;
	border-top: 3px solid #1A1D2E !important;
}

.sc-author-inner {
	display: flex !important;
	align-items: flex-start !important;
	gap: 24px !important;
}

.sc-author-img {
	flex-shrink: 0 !important;
}

.sc-author-img a {
	display: block !important;
	text-decoration: none !important;
}

.sc-author-img img {
	width: 80px !important;
	height: 80px !important;
	border-radius: 50% !important;
	object-fit: cover !important;
	object-position: center top !important;
	border: 3px solid #1A1D2E !important;
	display: block !important;
}

.sc-author-details {
	flex: 1 !important;
	min-width: 0 !important;
}

.sc-author-tag {
	display: none !important;
}

.sc-author-title {
	margin: 0 0 8px 0 !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
}

.sc-author-title a {
	color: #1A1D2E !important;
	text-decoration: none !important;
}

.sc-author-title a:hover {
	color: #1A1D2E !important;
}

.sc-author-desc {
	margin: 0 !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
	color: #1A1D2E !important;
}

.sc-author-btn {
	display: none !important;
}

/* SC Author Box - Mobile Responsive */
@media (max-width: 640px) {
	.sc-author-box {
		padding: 24px 20px !important;
		margin: 32px 0 !important;
	}
	
	.sc-author-inner {
		flex-direction: column !important;
		text-align: center !important;
		gap: 16px !important;
	}
	
	.sc-author-img img {
		width: 70px !important;
		height: 70px !important;
		margin: 0 auto !important;
	}
	
	.sc-author-title {
		font-size: 20px !important;
	}
}