/**
 * Haber Sitesi - Kategoriler Widget Özel Stilleri
 * Modern Kart Tasarımı
 */

/* Kategoriler Widget Ana Stili */
.categories-widget {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
}

.categories-widget .widget-title {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.categories-widget .widget-title h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
    color: #333;
    display: inline-block;
    position: relative;
}

.categories-widget .widget-title h3:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff5e62, #ff9966);
}

.categories-widget .widget-content {
    padding: 0;
}

/* Kategori Listesi */
.categories-widget .category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.categories-widget .category-list li {
    flex: 1 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.categories-widget .category-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.categories-widget .category-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #5b86e5, #36d1dc);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.categories-widget .category-list li:nth-child(2n) a {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
}

.categories-widget .category-list li:nth-child(3n) a {
    background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.categories-widget .category-list li:nth-child(4n) a {
    background: linear-gradient(135deg, #7b4397, #dc2430);
}

.categories-widget .category-list li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.categories-widget .category-list li a:hover:before {
    transform: scale(1.5);
}

.categories-widget .category-list li a i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.categories-widget .category-list li a:hover i {
    transform: scale(1.2);
}

.categories-widget .category-name {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Kategori sayıları kaldırıldı */

/* Aktif Kategori */
.categories-widget .category-list li.active {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.categories-widget .category-list li.active a:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
    border-color: transparent #fff transparent transparent;
}

/* Responsive */
@media (max-width: 576px) {
    .categories-widget .category-list li {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
