

/* Start:/local/templates/borodino/components/bitrix/news.detail/photo/style.css?17532615821325*/
.album-header {
    text-align: center;
    margin-bottom: 30px;
}

.album-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.album-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Сетка фотографий */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 0 auto;
    margin-bottom: 30px;
}

/* Карточка фото (обёрнута в ссылку) */
.photo-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.photo-link:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.photo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    padding: 12px;
    background: white;
    text-align: center;
    font-size: 16px;
    color: #444;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: 1fr;
    }

    .photo-img {
        height: 250px;
    }
}
/* End */
/* /local/templates/borodino/components/bitrix/news.detail/photo/style.css?17532615821325 */
