/**
 * Single Post Styles
 */

.pat-single-post {
    padding: 60px 0;
}

.pat-single-post__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.pat-single-post__header {
    text-align: center;
    margin-bottom: 40px;
}

.pat-single-post__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.pat-single-post__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #64748b;
    font-size: 0.95rem;
}

.pat-single-post__date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pat-single-post__categories a {
    color: rgb(8, 87, 102);
    text-decoration: none;
}

.pat-single-post__categories a:hover {
    text-decoration: underline;
}

.pat-single-post__thumbnail {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.pat-single-post__thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.pat-single-post__content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.pat-single-post__content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 40px 0 20px;
}

.pat-single-post__content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 30px 0 15px;
}

.pat-single-post__content p {
    margin: 0 0 20px;
}

.pat-single-post__content a {
    color: rgb(8, 87, 102);
}

.pat-single-post__content ul,
.pat-single-post__content ol {
    margin: 0 0 20px;
    padding-left: 25px;
}

.pat-single-post__content li {
    margin-bottom: 10px;
}

.pat-single-post__content blockquote {
    border-left: 4px solid rgb(8, 87, 102);
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #64748b;
}

.pat-single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.pat-single-post__content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 20px 0;
}

.pat-single-post__content code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.pat-single-post__content pre code {
    background: none;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pat-single-post__container {
        padding: 0 20px;
    }
    
    .pat-single-post__title {
        font-size: 2rem;
    }
    
    .pat-single-post__meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .pat-single-post__content {
        font-size: 1rem;
    }
}
