

/* Start:/bitrix/templates/spartakiada_kz/components/bitrix/news.list/photogallery/style.css?17507680932874*/
body {
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    color: #002b5c;
}

.gallery-wrapper {
    padding: 60px 20px;
    background-color: #ffffff;
    min-height: 100vh;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #002b5c;
    border-bottom: 2px solid #ffd700;
    display: inline-block;
    padding-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 240px;
    background-color: #f0f2f8;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(0,43,92,0.06), 0 6px 16px rgba(0, 43, 92, 0.1);
    border: 1px solid rgba(0, 43, 92, 0.05);
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: inset 0 0 0 1px rgba(0,43,92,0.08), 0 16px 28px rgba(0, 43, 92, 0.2);
}

.gallery-photo-stack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-photo-stack img {
    position: absolute;
    width: 92%;
    height: 92%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.14);
    transition: transform 0.6s ease;
    opacity: 0.94;
    pointer-events: none;
}

.gallery-photo-stack img:nth-child(1) {
    top: 12px;
    left: 10px;
    transform: rotate(-3deg);
    z-index: 1;
}
.gallery-photo-stack img:nth-child(2) {
    top: 6px;
    left: 22px;
    transform: rotate(0deg);
    z-index: 2;
}
.gallery-photo-stack img:nth-child(3) {
    top: 0;
    left: 34px;
    transform: rotate(3deg);
    z-index: 3;
}

.gallery-card:hover .gallery-photo-stack img:nth-child(1) {
    transform: translateX(-8px) rotate(-5deg) scale(1.03);
}
.gallery-card:hover .gallery-photo-stack img:nth-child(2) {
    transform: rotate(0deg) scale(1.03);
}
.gallery-card:hover .gallery-photo-stack img:nth-child(3) {
    transform: translateX(8px) rotate(5deg) scale(1.03);
}

/* Градиент затемнения поверх всего */
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,43,92,0.45));
    z-index: 4;
}

/* Название + иконка */
.gallery-card-title-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-card-title-overlay svg {
    width: 20px;
    height: 20px;
    fill: white;
    opacity: 0.8;
}


/* End */
/* /bitrix/templates/spartakiada_kz/components/bitrix/news.list/photogallery/style.css?17507680932874 */
