.anasayfa-grid-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
    box-sizing: border-box;
    padding: 0;
}
.anasayfa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}
.anasayfa-grid .grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.anasayfa-grid .grid-img {
    width: 110px;
    height: 110px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 8px;
}
.anasayfa-grid .grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.anasayfa-grid .grid-cat {
    text-align: center;
    margin-top: 4px;
    font-size: 16px;
}
/* Mobil tabloyu masaüstünde gizle */
.mobile-grid-table {
    display: none; /* Varsayılan olarak gizli */
}
@media (max-width: 900px) {
    .anasayfa-grid {
        display: none;
    }
    .mobile-grid-table {
        display: table; /* Sadece mobilde göster */
        width: 100%;
        border-collapse: separate;
        border-spacing: 10px;
    }
    .mobile-grid-table .mobile-grid-row {
        display: table-row;
    }
    .mobile-grid-table .mobile-grid-cell {
        display: table-cell;
        width: 50%;
        text-align: center;
        vertical-align: top;
        padding-bottom: 20px;
    }
    .mobile-grid-table .grid-img {
        width: 110px;
        height: 110px;
        margin: 0 auto 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        overflow: hidden;
    }
    .mobile-grid-table .grid-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }
}
@media (max-width: 600px) {
    .mobile-grid-table .grid-img {
        width: 110px;
        height: 110px;
    }
}
/* Kadence tema override */
.content-area .entry-content .anasayfa-grid-wrapper {
    max-width: 100%;
    width: 100%;
    overflow: visible;
}
/* Desktop için arka arkaya gelen öğeleri hizala */
@media (min-width: 901px) {
    .anasayfa-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .anasayfa-grid .grid-item {
        width: calc(25% - 30px);
        margin: 0 0 30px 0;
    }
} 