/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2025 | 01:38:53 */
/* Kart yapısı */
.alm-custom .alm-item {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e3e3e3;
}

/* Başlık */
.alm-custom .alm-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Açıklama */
.alm-custom .alm-excerpt {
    font-size: 17px;
    line-height: 1.6;
}

/* Thumbnail kutusu: Kare ve yuvarlak */
.alm-thumb-wrap {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 auto 20px;
}

/* Thumbnail görüntü: Kapsayıcıya tam oturur */
.alm-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* —— MASAÜSTÜ: resim üstte, yazı altında ——— */
@media (min-width: 768px) {
    .alm-custom .alm-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .alm-thumb-wrap {
        margin-bottom: 20px;
    }
    
    .alm-custom .alm-title {
        margin-bottom: 15px;
    }
}

/* —— MOBİL: üstte resim altında yazı ——— */
@media (max-width: 767px) {
    .alm-custom .alm-item {
        display: block;
    }
    
    .alm-thumb-wrap {
        margin: 0 auto 15px;
    }
    
    .alm-custom .alm-title {
        text-align: center;
    }
}

/* ===== YÜKLENİYOR ANİMASYONU ===== */
.alm-load-more-btn-wrap {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

/* Buton yazısını gizle ama yapıyı koru */
.alm-load-more-btn {
    background: none !important;
    border: none !important;
    color: transparent !important;
    padding: 10px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    position: relative;
    cursor: default !important;
}

/* Loading spinner - "..." animasyonu */
.alm-load-more-btn::before {
    content: '.';
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    letter-spacing: 4px;
    animation: dots 1.8s steps(4, end) 1;
    position: static;
    transform: none;
    border: none;
    width: auto;
    height: auto;
    text-align: center;
}

@keyframes dots {
    0% {
        content: '.';
    }
    33% {
        content: '..';
    }
    66% {
        content: '...';
    }
    100% {
        content: '...';
    }
}

/* ===== BAŞA DÖN BUTONU ===== */
.alm-finished-btn-wrap {
    display: flex !important;
    justify-content: center;
    padding: 30px 0;
}

.alm-load-more-btn.alm-finished {
    background: #333 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer !important;
    transition: background 0.3s;
}

.alm-load-more-btn.alm-finished:hover {
    background: #555 !important;
}

.alm-load-more-btn.alm-finished::before {
    content: 'En sona çık' !important;
    display: block;
    font-size: 16px;
    letter-spacing: 0;
}/