/******* Do not edit this file *******/
/*
My Custom CSS - by Salvatore Noschese
aka L'AltroWeb - https://laltroweb.it/
/*
Saved: Sep 11 2026 | 02:34:12 (pm)
/*
/******* Do not edit this file *******/

/* 1. Ana Sayfadaki Gereksiz Otomatik Başlığı Gizle */
html body.home .entry-title,
html body.home .entry-header {
    display: none;
}

/* 2. Astra Menüsünü Ferahlat ve ODTÜ Renklerine Ayarla */
html body .main-navigation a,
html body .ast-primary-menu a,
html body .main-header-menu a {
    color: #0b2e4c;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

/* Menü Linklerinin Üzerine Gelince (Hover) ODTÜ Kırmızısı Vurgu */
html body .main-navigation a:hover,
html body .ast-primary-menu a:hover,
html body .main-header-menu a:hover,
html body .current-menu-item > a {
    color: #c8102e;
}

/* 3. Ana Sayfadaki 3 Bilgi Kutusunun Hover (Süzülme) Efekti */
html body .entry-content div[style*="min-width:260px"] {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

html body .entry-content div[style*="min-width:260px"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* 4. Buton Etkileşimleri */
html body a[href*="/etkinlikler/"],
html body a[href*="/hakkimizda/"] {
    transition: transform 0.2s ease, filter 0.2s ease;
}

html body a[href*="/etkinlikler/"]:hover,
html body a[href*="/hakkimizda/"]:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* 5. Otomatik Duyuru ve Etkinlik Kartları Düzeni */
html body ul.wp-block-latest-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

html body ul.wp-block-latest-posts li {
    flex: 1;
    min-width: 260px;
    max-width: 32%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

html body ul.wp-block-latest-posts li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

html body ul.wp-block-latest-posts li a {
    color: #0b2e4c;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

html body ul.wp-block-latest-posts time {
    font-size: 0.8rem;
    color: #718096;
    display: block;
    margin-bottom: 10px;
}

html body ul.wp-block-latest-posts img {
    border-radius: 6px;
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 12px;
}