/* =============================
   ETKİNLİKLER ARŞİV SAYFASI
   ============================= */

/* GRID YAPISI */
#ytaevents-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ytaevents-grid {
    display: grid;
    grid-template-columns: repeat(3, 440px);
    gap: 15px;
    justify-content: center;
    padding-left: 80px;   /* grid’i biraz sağa yaklaştırmak için */
}

/* =============================
   KART TASARIMI (SABİT 380x420)
   ============================= */

.yta-card {
    width: 380px;
    max-width: 380px;
    height: 460px;                 /* SABİT KART YÜKSEKLİĞİ */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
    transition: .25s ease;
}


.yta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

.yta-card a {
    text-decoration: none;
    color: inherit;
}

/* =============================
   GÖRSEL ALANI
   Kart yüksekliğinin 3/5'i = 252px
   ============================= */

.yta-card-img {
    position: relative;
    width: 100%;
    height: 260px;      /* SABİT GÖRSEL YÜKSEKLİĞİ */
    flex: 0 0 260px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #000;
}

.yta-card-img img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;      /* görsel alanı tamamen doldursun */
    object-position: center;
}



.placeholder-img {
    width: 100%;
    height: 100%;
    background: #e3e3e3;
}

/* =============================
   DURUM ROZETİ (Aktif/Pasif)
   ============================= */

.yta-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    color: #fff;
    z-index: 10;
    pointer-events: none;
}

.yta-badge-active {
    background-color: #24C16B; /* Yeşil */
}

.yta-badge-inactive {
    background-color: #FF3B30; /* Kırmızı */
}

/* =============================
   KART ALT METİN ALANI
   ============================= */

.yta-card-info {
    padding: 20px 22px;
    height: 180px;              /* ALT ALAN SABİT */
    display: flex;
    flex-direction: column;
}

/* TARİH ALANI */
.yta-card-date {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.calendar-icon {
    width: 24px;
    margin-right: 8px;
    opacity: 0.8;
}

/* BAŞLIK */
.yta-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
    margin-bottom: 22px;
}

/* DETAYLI BİLGİ BUTONU – HER ZAMAN ALTA SABİT */
.yta-detail-link {
    margin-top: auto;           /* butonu alta sabitler */
    margin-bottom: 20px;        /* alttan nefes boşluğu */
    font-size: 26px;
    font-weight: 500;
    color: #FF8A32;
}

.yta-detail-link:hover {
    opacity: 0.75;
}

.yta-detail-link svg,
.yta-detail-link img {
    width: 20px;
    margin-left: 6px;
}

/* =============================
   MOBİL – TABLET RESPONSIVE
   ============================= */

@media (max-width: 1200px) {
    .ytaevents-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        padding-left: 0;
    }

    .yta-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ytaevents-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        justify-content: center;
        padding-left: 0;
    }

    .yta-card {
        width: 100%;
        max-width: 100%;
    }
}
