.basin-container {
    padding: 0 20px;
    border-radius: 0;
}

ul.basin-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

@media (max-width: 900px) {
    ul.basin-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    ul.basin-list {
        grid-template-columns: 1fr;
    }
}

ul.basin-list li {
    box-sizing: border-box;
}

.basin-box {
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.basin-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.basin-box img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.basin-box-on {
    padding: 10px;
    flex: 1; /* Kalan alanı kaplar */
    display: flex;
    align-items: flex-end;
    background: #f5f5f5;
}

.basin-box-on span {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
}

.page-nav {
    text-align: center;
    margin: 20px 0;
}

.page-nav a, .page-nav span {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    border-radius: 3px;
    color: #333;
    background: #f9f9f9;
    text-decoration: none;
    border: 1px solid #ddd;
}

.page-nav a:hover {
    background: #eee;
}

.page-nav .current {
    background: #333;
    color: #fff;
    pointer-events: none;
    border: 1px solid #333;
}

.page-nav .extend {
    pointer-events: none;
}
