﻿.post-featured-thumb {
            width: 100%;
            aspect-ratio: 16/9; /* Standart video oranı */
            min-height: 250px;
            max-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
        }

        .post-featured-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* Büyük ekranlar için aspect ratio değişikliği */
        @media (min-width: 1200px) {
            .post-featured-thumb {
                aspect-ratio: 21/9; /* Daha geniş oran */
                max-height: 400px;
            }
        }

        /* Medium ekranlar için */
        @media (max-width: 992px) {
            .post-featured-thumb {
                aspect-ratio: 4/3;
                min-height: 200px;
                max-height: 350px;
            }
        }

        /* Mobile için */
        @media (max-width: 768px) {
            .post-featured-thumb {
                aspect-ratio: 3/2;
                min-height: 180px;
                max-height: 280px;
            }
        }

        /* Çok küçük ekranlar için */
        @media (max-width: 480px) {
            .post-featured-thumb {
                aspect-ratio: 4/3;
                min-height: 160px;
                max-height: 220px;
            }
        }



.post-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.post-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.post-content h1,
.post-content h2,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.post-content h1 {
    font-size: 32px;
}

.post-content h2 {
    font-size: 26px;
}

.post-content h4 {
    font-size: 20px;
}

.post-content h5 {
    font-size: 18px;
}

.post-content h6 {
    font-size: 16px;
}

.post-content ul,
.post-content ol {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
    color: #444;
}

.post-content strong,
.post-content b {
    font-weight: 600;
    color: #2c3e50;
}

.post-content blockquote {
    font-size: 19px;
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin: 25px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    font-style: italic;
}

/* Mobile için font boyutları */
@media (max-width: 768px) {
    .post-content h3 {
        font-size: 24px;
    }

    .post-content p,
    .post-content ul,
    .post-content ol {
        font-size: 17px;
    }

    .post-content h1 {
        font-size: 28px;
    }

    .post-content h2 {
        font-size: 22px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .post-content h3 {
        font-size: 22px;
    }

    .post-content p,
    .post-content ul,
    .post-content ol {
        font-size: 16px;
    }
}