
    /* DUYURULAR ALANI ÖZEL STİLLERİ */
    .announcements-container {
        padding: 2rem 0;
        font-family: 'Poppins', sans-serif;
    }
    
    /* Duyuru Listesi */
    .announcements-list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .announcement-item {
        background: white;
        border-radius: 12px;
        padding: 1.8rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border-left: 5px solid #3498db;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .announcement-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(52, 152, 219, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .announcement-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .announcement-item:hover::before {
        opacity: 1;
    }
    
    .announcement-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .announcement-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #2c3e50;
        margin-right: 1.5rem;
        line-height: 1.4;
        flex: 1;
    }
    
    .announcement-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
        display: block;
    }
    
    .announcement-title a:hover {
        color: #3498db;
    }
    
    .announcement-date {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        color: #7f8c8d;
        font-size: 0.95rem;
        white-space: nowrap;
        flex-shrink: 0;
        text-align: right;
    }
    
    .announcement-date .date {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.2rem;
    }
    
    .announcement-date .time {
        font-size: 0.85rem;
        color: #95a5a6;
        display: flex;
        align-items: center;
    }
    
    .announcement-date .time i {
        margin-right: 0.3rem;
        color: #3498db;
    }
    
    .announcement-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f1f2f6;
        margin-top: auto;
    }
    
    .announcement-department {
        font-size: 0.95rem;
        color: #7f8c8d;
        display: flex;
        align-items: center;
        font-weight: 500;
    }
    
    .announcement-department i {
        margin-right: 0.5rem;
        color: #3498db;
        font-size: 1.1rem;
    }
    
    .read-more {
        display: inline-flex;
        align-items: center;
        background: #3498db;
        color: white;
        font-weight: 500;
        text-decoration: none;
        padding: 0.6rem 1.2rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        z-index: 2;
    }
    
    .read-more i {
        margin-left: 0.5rem;
        transition: transform 0.2s;
    }
    
    .read-more:hover {
        background: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    
    .read-more:hover i {
        transform: translateX(3px);
    }
    
    /* Sayfalama */
    .announcement-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .ann-page-btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: white;
        color: #7f8c8d;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid #eaeaea;
    }
    
    .ann-page-btn:hover,
    .ann-page-btn.active {
        background: #3498db;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    
    .ann-page-btn.prev,
    .ann-page-btn.next {
        width: auto;
        padding: 0 1.2rem;
        font-weight: 500;
    }
    
    .ann-page-btn.prev i,
    .ann-page-btn.next i {
        margin: 0 0.3rem;
    }
    
    /* Responsive Tasarım */
    @media (max-width: 992px) {
        .announcement-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        
        .announcement-date {
            flex-direction: row;
            align-items: center;
            gap: 1rem;
        }
    }
    
    @media (max-width: 768px) {
        .announcement-item {
            padding: 1.5rem;
        }
        
        .announcement-title {
            font-size: 1.25rem;
        }
        
        .announcement-footer {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .read-more {
            width: 100%;
            justify-content: center;
            margin-top: 0.5rem;
        }
    }
    
    @media (max-width: 576px) {
        .announcement-pagination {
            flex-wrap: wrap;
        }
        
        .announcement-date {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.3rem;
        }
    }