﻿/*duyuru*/

.container {
    max-width: 800px;
    margin: auto;
    margin-top: 9em;
    margin-bottom: 5em;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/9;
    margin-bottom: 15px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

    .slides img {
        width: 100%;
        object-fit: contain;
        background-color: #000;
        flex-shrink: 0;
    }

.nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

    .nav-buttons button {
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        font-size: 20px;
        padding: 8px 12px;
        border-radius: 5px;
        cursor: pointer;
    }

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .dot.active {
        background-color: #333;
    }

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.date {
    font-size: 14px;
    color: gray;
    margin-bottom: 15px;
}

.content {
    font-size: 16px;
    line-height: 1.6;
}
