/* === GŁÓWNA GALERIA === */
.cfg-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cfg-album {
    width: 350px;
    text-align: center;
}

.cfg-album-title {
    font-size: 24px;
    font-weight: bold;
    color: #00B9F2;
    margin-top: 10px;
    text-align: center;
}

.cfg-album-thumb {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    border: 2px solid #EC008C !important;
    border-radius: 0 20px 20px 0 !important;
    box-shadow: 0 0 4px rgba(0,0,0,0.2) !important;
}

.cfg-album-date {
    font-size: 16px;
    color: #00B9F2;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.cfg-gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* === WIDOK POJEDYNCZEGO ALBUMU === */
.cfg-single-album {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

.cfg-single-album h2 {
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    background-color: #00B9F2;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.cfg-album-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cfg-album-photos img.cfg-album-photo {
    width: 250px;
    height: 160px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.cfg-album-photos img.cfg-album-photo:hover {
    border-color: #EC008C;
}

.cfg-back-link {
    display: inline-block;
    margin-bottom: 20px;
    background-color: #EC008C;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

/* === PAGINACJA === */
.cfg-pagination, .cfg-year-pagination {
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cfg-pagination .cfg-page, .cfg-year-pagination a, .cfg-year-pagination span {
    padding: 8px 14px;
    background: #EC008C;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.cfg-pagination .current, .cfg-year-pagination .current {
    background: #00B9F2;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 768px) {
    .cfg-album { width: 90%; }
    .cfg-album-thumb { height: 200px !important; }
    .cfg-album-photos img.cfg-album-photo { width: 45%; height: auto; }
}

@media (max-width: 480px) {
    .cfg-album-photos img.cfg-album-photo { width: 100%; }
}