/* Single Post Sayfası */

.single-outer-container {
    min-height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end; /* Öğeleri dikeyde aşağı hizala */
    padding-bottom: 30px;
    overflow: hidden; /* Overlay taşmasını engelle */
}

/* Koyu transparan overlay */
.single-outer-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Siyah transparan katman */
    z-index: 1;
}

.single-header-content {
    color: #ffffff; /* Başlık ve yazar adının rengini beyaz yap */
    width: 100%;
    position: relative;
    z-index: 2; /* Overlay’in üstünde kalsın */
}

.entry-title {
    font-size: 40px;
    color: #f1f1f1;
}


/* İçerik Konteynerı */
.single-content-container {
    padding-top: 50px; /* Üstten boşluk ekle */
    padding-bottom: 50px; /* Alttan boşluk ekle */
}

/* Masaüstü ve büyük ekranlar (1024px ve üzeri) */
@media (min-width: 1024px) {
    .single-header-content,
    .single-content-container {
        padding-left: 50px;
        padding-right: 50pxpx;
    }
}

/* Tabletler (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .single-header-content,
    .single-content-container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/* Mobil cihazlar (767px ve altı) */
@media (max-width: 767px) {
    .single-header-content,
    .single-content-container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .entry-title {
        font-size: 2rem;
    }
}
