/* ========================================
   Etkinlik Liste Styles
======================================== */

.etkinliklerCont {
    padding: 20px 0;
}

    .etkinliklerCont .page-title {
        font-size: 28px;
        font-weight: 600;
        color: #1f1f25;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }

.etkinlik-liste {
    margin-top: 30px;
}

    .etkinlik-liste .etkinlik {
        display: flex;
        gap: 20px;
        background: #ffffff;
        /* border: 1px solid #e8e8e8; */
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

        .etkinlik-liste .etkinlik:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
            border-color: #0f7c90;
        }

        .etkinlik-liste .etkinlik .tarih {
            flex-shrink: 0;
            width: 80px;
            background: linear-gradient(135deg, #00a4db 0%, #0a5968 100%);
            color: #ffffff;
            text-align: center;
            border-radius: 8px;
            padding: 15px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            .etkinlik-liste .etkinlik .tarih .gun {
                display: block;
                font-size: 32px;
                font-weight: 700;
                line-height: 1;
                margin-bottom: 5px;
            }

            .etkinlik-liste .etkinlik .tarih .ay {
                display: block;
                font-size: 14px;
                font-weight: 500;
                text-transform: capitalize;
                margin-bottom: 3px;
            }

            .etkinlik-liste .etkinlik .tarih .yil {
                display: block;
                font-size: 13px;
                font-weight: 400;
                opacity: 0.9;
            }

        .etkinlik-liste .etkinlik .yazi {
            flex: 1;
            min-width: 0;
        }

            .etkinlik-liste .etkinlik .yazi h3 {
                font-size: 20px;
                font-weight: 600;
                margin: 0 0 15px 0;
                line-height: 1.4;
            }

                .etkinlik-liste .etkinlik .yazi h3 a {
                    color: #1f1f25;
                    text-decoration: none;
                    transition: color 0.3s ease;
                }

                    .etkinlik-liste .etkinlik .yazi h3 a:hover {
                        color: #0077b1;
                    }

            .etkinlik-liste .etkinlik .yazi p {
                font-size: 14px;
                color: #6b6b6b;
                margin: 0 0 8px 0;
                line-height: 1.6;
            }

                .etkinlik-liste .etkinlik .yazi p b {
                    color: #1f1f25;
                    font-weight: 600;
                    margin-right: 5px;
                }

        .etkinlik-liste .etkinlik .paylas {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
            justify-content: center;
        }

            .etkinlik-liste .etkinlik .paylas a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: #f5f5f5;
                transition: all 0.3s ease;
            }

                .etkinlik-liste .etkinlik .paylas a:hover {
                    background: #0f7c90;
                    transform: scale(1.1);
                }

                .etkinlik-liste .etkinlik .paylas a img {
                    width: 18px;
                    height: 18px;
                    object-fit: contain;
                }

/* Responsive Styles */
@media only screen and (max-width: 767px) {
    .etkinlik-liste .etkinlik {
        flex-direction: column;
        padding: 20px;
    }

        .etkinlik-liste .etkinlik .tarih {
            width: 100%;
            flex-direction: row;
            justify-content: center;
            gap: 15px;
            padding: 15px;
        }

            .etkinlik-liste .etkinlik .tarih .gun {
                font-size: 28px;
            }

            .etkinlik-liste .etkinlik .tarih .ay,
            .etkinlik-liste .etkinlik .tarih .yil {
                font-size: 14px;
            }

        .etkinlik-liste .etkinlik .paylas {
            flex-direction: row;
            justify-content: flex-start;
            margin-top: 15px;
        }

    .etkinliklerCont .page-title {
        font-size: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .etkinlik-liste .etkinlik .tarih {
        width: 70px;
        padding: 12px 8px;
    }

        .etkinlik-liste .etkinlik .tarih .gun {
            font-size: 28px;
        }

    .etkinlik-liste .etkinlik .yazi h3 {
        font-size: 18px;
    }
}

/* Empty State */
.etkinlik-liste .col-lg-12 {
    text-align: center;
    padding: 60px 20px;
    color: #6b6b6b;
    font-size: 16px;
    background: #f9f9f9;
    border-radius: 8px;
}
