﻿/* GENEL ALAN */
.irHeroSection {
    width: 100%;
    background: #f4f6fb;
    padding: 40px 0;
}

/* WRAPPER */
.irWrapper {
    width: 1770px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* SOL PANEL */
.irLeftPanel {
    width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

/* SAĞ PANEL */
.irRightPanel {
    width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

/* ORTA SLIDER */
.irMainSlider {
    width: 850px;
    height: 430px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.irSlideItem {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* SLIDER CONTENT */
.irSlideContent {
    position: absolute;
    bottom: 40px;
    left: 50px;
    color: #fff;
    max-width: 500px;
}

    .irSlideContent h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

.irSlideBtn {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: #171796;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
}

/* BLOK BAŞLIK */
.irBlockHeader h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #171796;
}

/* TAKVİM */
.irCalendarItem {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.irDateBox {
    background: #171796;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    min-width: 60px;
}

    .irDateBox span {
        display: block;
        font-size: 18px;
        font-weight: bold;
    }

    .irDateBox small {
        font-size: 12px;
    }

.irDateText {
    font-size: 14px;
    font-weight: 500;
}

/* BUTON */
.irMoreBtn {
    display: inline-block;
    margin-top: 20px;
    color: #171796;
    font-weight: 600;
    text-decoration: none;
}

/* ========================= */
/* DUYURULAR SECTION */
/* ========================= */

.irAnnouncementsSection {
    padding: 80px 0;
    background: #f5f7fa;
}

.irAnnouncementsHeader h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.irPassiveTab {
    color: #999;
    margin-right: 20px;
    cursor: pointer;
}

.irActiveTab {
    color: #002b5c;
    font-weight: 700;
    border-bottom: 3px solid #002b5c;
    padding-bottom: 5px;
}

.irAnnouncementsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.irAnnouncementItem {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 22px 25px;
    border-left: 4px solid #002b5c;
    transition: 0.3s ease;
    cursor: pointer;
}

    .irAnnouncementItem:hover {
        background: #eef2f7;
        transform: translateX(6px);
    }

/* Tarih */
.irAnnouncementDate {
    min-width: 130px;
    margin-right: 30px;
    text-align: center;
}

    .irAnnouncementDate .irDay {
        display: block;
        font-size: 14px;
        color: #777;
    }

    .irAnnouncementDate .irMonth {
        display: block;
        font-size: 18px;
        font-weight: 600;
        color: #002b5c;
    }

/* Metin */
.irAnnouncementText {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

/* Footer */
.irAnnouncementsFooter {
    margin-top: 35px;
    text-align: right;
}
.irAnnouncementsFlex {
    display: flex;
    gap: 60px;
}

/* SOL - Küçültüldü */
.irAnnouncementsLeft {
    flex: 0 0 35%;
}

/* SAĞ - Büyütüldü */
.irAnnouncementsRight {
    flex: 0 0 55%;
}
/* MENU ICON GRID */
.menuIconContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


    .menuIconContainer .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 25px 15px;
        background: #ffffff;
        text-decoration: none;
        color: #002b5c;
        text-align: center;
        border: 1px solid #e5e8ed;
        transition: 0.3s ease;
    }

        .menuIconContainer .item img {
            width: 40px;
            margin-bottom: 15px;
        }

        .menuIconContainer .item p {
            font-size: 14px;
            font-weight: 600;
        }

        .menuIconContainer .item:hover {
            background: #002b5c;
            color: #fff;
            transform: translateY(-5px);
        }

            .menuIconContainer .item:hover img {
                filter: brightness(0) invert(1);
            }
