﻿#Blogs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#BlogsInner {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#BlogHeaderText2 {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #555555;
    margin: 10px auto 10px;
    width: 60%
}

#BlogItemConteiner {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.BlogItem {
    /*width: 25%;*/
    padding: 10px;
    border-radius: 10px;
    /*outline: 1px solid black;*/
    -webkit-box-shadow: 0px 0px 20px -1px rgba(208, 208, 208, 1);
    -moz-box-shadow: 0px 0px 20px -1px rgba(208, 208, 208, 1);
    box-shadow: 0px 0px 20px -1px rgba(208, 208, 208, 1);
}

/* 1) Container: sabit yükseklik + taşan kısmı gizle */
.BlogItemImgContainer {
    height: 200px;
    overflow: hidden;
    position: relative; /* (ops) ileride badge vs. konumlamak istersen işe yarar */
}

    /* 2) Görsel: alanı tam doldur, gerekirse keserek sığdır */
    .BlogItemImgContainer img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* doldur ve kırp */
        object-position: center; /* kırpma merkezden olsun */
        display: block; /* olası satır boşluğunu kaldır */
    }


.BlogItemText {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0px;
    color: #5e5e5e;
}

.BlogItemDescription {
    font-size: 14px;
    color: #8f8f8f;
    line-height: 1.6;
}
