.post-single {
    padding: 3rem 0;
}

.post-header {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.post-header .post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.post-header .post-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.post-featured-image {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.post-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body img {
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.post-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
}

.related-posts {
    padding: 4rem 0;
    background: var(--bg-gray);
}

.related-posts .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .post-header .post-title {
        font-size: 1.875rem;
    }
    
    .post-body {
        font-size: 1rem;
    }
}

/* Blog post tipográfia fejlesztések */
.post-body a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: all 0.3s ease;
}

.post-body a:hover {
    color: var(--primary-dark);
    text-decoration-thickness: 2px;
}

.post-body strong {
    font-weight: 600;
    color: var(--text-dark);
}

.post-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-gray);
}

.post-body code {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.post-body pre {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* FAQ Section */
.post-faq {
    max-width: 800px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Mobil optimalizáció */
@media (max-width: 768px) {
    .post-single {
        padding: 2rem 0;
    }
    
    .post-header {
        margin-bottom: 2rem;
    }
    
    .post-header .post-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .post-body {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .post-body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.75rem;
    }
    
    .post-body h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .post-body ul,
    .post-body ol {
        margin-left: 1.5rem;
    }
    
    .post-body blockquote {
        padding-left: 1rem;
        margin: 1.5rem 0;
    }
    
    .post-body pre {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .post-faq {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9375rem;
    }
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin: 2.5rem 0;
    color: white;
}

.cta-box-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    color: white;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-box-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.cta-box-button::after {
    content: ' →';
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box-text {
        font-size: 1rem;
    }
    
    .cta-box-button {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}