.banner-post {
    position: relative;
    overflow: hidden;
    margin: 0 auto 50px;
    /* Üst–alt 20px boşluk, sağ–sol auto ile ortalama */
    max-width: calc(100% - 40px);
    /* Sağ–sol toplamda 40px küçült */
    height: auto;
    /* Oran bozulmasın */
}

.banner-inner {
    display: block;
    position: relative;
}

.banner-post img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-title {
    position: absolute;
    left: 20px;
    bottom: 40px;
    font-size: 38px;
    color: #fff;
    margin: 0;
    z-index: 2;
    transition: bottom 0.6s ease-in-out;
}

/* Overlay alanı */
.banner-overlay {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #8a0303 0%, #8a030321 100%);
    color: #fff;
    z-index: 1;
    transition: bottom 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.banner-post:hover .banner-overlay {
    bottom: 0;
}

.banner-post:hover .banner-title {
    bottom: 40%;
}

.banner-meta {
    padding: 20px;
}

.banner-meta p {
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
}

.banner-meta .meta-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 13px;
    align-items: center;
}

.banner-meta .author {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .banner-post{
        margin: 10px auto 30px;
    }
    .banner-title {
        font-size: 24px;
        bottom: 20px;
    }
.banner-overlay{
    display: none;
}
}