/* ==========================================================================
   📝 პოსტის შიდა გვერდის მინიმალისტური სტილები (single.css)
   ========================================================================== */

.single-post-section {
    padding: 120px 20px 80px 20px; /* ზედა დაშორება ითვალისწინებს ფიქსირებულ ჰედერს */
    background-color: #222222;
    min-height: 70vh;
    display: flex;
    justify-content: center;
}

.post-container {
    width: 100%;
    max-width: 800px; /* იდეალური სიგანე გრძელი ტექსტების კომფორტულად წასაკითხად */
    margin: 0 auto;
}

/* 📅 პოსტის სათაურის ბლოკი */
.post-header {
    margin-bottom: 40px;
    text-align: left;
}

.post-title {
    font-size: clamp(2rem, 4vw, 3.2rem); /* დინამიური ზომა ეკრანის მიხედვით */
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.post-meta {
    font-size: 0.9rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 🖼️ მთავარი სურათის კონტეინერი */
.post-featured-image {
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ✍️ პოსტის ძირითადი ტექსტური კონტენტი */
.post-body {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #d3d3d3;
}

/* Gutenberg / ვორდპრესის სტანდარტული ელემენტების თავსებადობა */
.post-body p {
    margin-bottom: 24px;
}

.post-body h2, 
.post-body h3 {
    color: #111111;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.post-body h2 { font-size: 1.8rem; line-height: 1.3; }
.post-body h3 { font-size: 1.4rem; line-height: 1.3; }

.post-body ul, 
.post-body ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 30px 0;
}

/* 📱 რესპონსივი მობილურებისთვის */
@media (max-width: 768px) {
    .single-post-section {
        padding-top: 90px;
    }
    
    .post-header {
        margin-bottom: 25px;
    }
    
    .post-featured-image {
        margin-bottom: 30px;
        margin-left: -20px;  /* სურათი კიდეებზე გადის მობილურზე მეტი ეფექტისთვის */
        margin-right: -20px;
        border-radius: 0;
    }
    
    .post-body {
        font-size: 1.05rem;
        line-height: 1.65;
    }
}