.photo-report-display {
    position: relative;
    padding: 0 50px;
}

.photoSwiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: scale(0.95);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.85;
    transform: scale(0.98);
    z-index: 1;
}

.photo-report-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 90vw;
    height: 100%;
}

.photo-content {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.photo-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
}

.photo-content:hover img {
    transform: scale(1.05);
}

.photo-report-card-date {
    color: #0DA8CD;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
}

.photo-report-controls {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.photo-swiper {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    min-width: 400px;
}

.custom-pagination {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.custom-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #B0C4DE;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.custom-pagination .dot.active {
    background: #0B2C5D;
    transform: scale(1.5);
    z-index: 2;
}



.photos-more-button {
    background-color: #0DA8CD;
    color: #FFFFFF;
    padding: 10px 160px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.swiper-pagination {
    position: relative !important;
    display: flex !important;

}


.photo-report-container {
    display: grid;
    grid-template-columns: repeat(2, 3fr);
    gap: 150px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
}

.photo-report-card-grid {
    position: relative;
    max-width: 675px;
    max-height: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-content-grid {
    width: 100%;
    height: 600px;
    /* Высота изображения */
    overflow: hidden;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-report-card-text-grid {
    padding: 20px;
    background: #fff;
}

.photo-report-card-date-grid {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

/* Модальное окно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-image {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 15px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.active .modal-image {
    transform: scale(1);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
}

.year-filter-select {
    appearance: none;
    background: #0DA8CD;
    color: #fff;
    border-radius: 15px;
    border: none;
    padding: 10px 160px;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
}

.year-filter-select:focus,
.year-filter-select:hover {
    background: #0b7da8;
}