#guncelleme-zaman-cizelgesi {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;


}

.zaman-blogu {
    display: flex;
    margin-bottom: 0; /* Çizgi devamlılığı için 0 yapıyoruz */
    position: relative;
}

/* Sol Taraf: İkon ve Çizgi */
.zaman-sol {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    width: 60px;
    flex-shrink: 0;
}

.zaman-ikon {
    width: 50px;
    height: 50px;
    background-color: #52b774; /* Görseldeki yeşil tonu */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.zaman-ikon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* İkonu beyaz yapar */
}

.zaman-cizgi {
    width: 2px;
    background-color: #e0e0e0;
    flex-grow: 1; /* Blog boyu kadar uzar */
    z-index: 1;
}

/* Son bloğun çizgisini gizlemek için */
.zaman-blogu:last-child .zaman-cizgi {
    display: none;
}

/* Sağ Taraf: İçerik Kartı */
.zaman-icerik {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    width: 100%;
    position: relative;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* Kartın solundaki minik ok */
.zaman-ok {
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffffff;
    z-index: 2;
}

/* Tarih Stili */
.zaman-tarih {
    color: #52b774;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

/* Başlık Stili */
.zaman-baslik {
    margin: 0;
    font-size: 38px;
    font-weight: 400;
    color: #333;
}

.zaman-baslik a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.zaman-baslik a:hover {
    color: #52b774;
}

.zaman-ozet {
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .zaman-sol {
        margin-right: 15px;
        width: 40px;
    }

    .zaman-ikon {
        width: 40px;
        height: 40px;
    }

    .zaman-icerik {
        padding: 25px;
    }

    .zaman-baslik {
        font-size: 24px;
    }
}
