

/* Start:/local/templates/uralsteel_2024/components/bitrix/news.list/youth-work_navigation/style.css?17845342321729*/
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.card-link {
    display: block;
    text-decoration: none;
    color: #020202;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}
.card-link:hover {
    transform: translateY(-6px);
}
.card-content {
    padding: 32px 24px 28px 24px;
    min-height: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 10px;
    background-color: #EFEFEF;
    background-image: url('/local/templates/uralsteel_2024/img/back_vecotr.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card-icon {
    width: 64px;
    height: 64px;
    display: block;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.card-icon img{
    width: 100%;
}
.card-title {
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    color: #000;
    flex-shrink: 0;
}
.card-desc {
    font-size: 20px;
    position: relative;
    z-index: 2;
    color: #000;
    flex: 1;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .card-content {
        min-height: 300px;
        padding: 28px 22px 24px 22px;
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .page-title {
        font-size: 1.8rem;
    }
    .card-content {
        min-height: 260px;
        padding: 24px 20px 20px 20px;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .card-desc {
        font-size: 0.9rem;
    }
}
/* End */


/* Start:/local/templates/uralsteel_2024/components/bitrix/news.detail/youth_work_slider/style.css?17845342321867*/
.slider-section{
    margin: 50px 0 0 0;
}
.swiper-wrapper {
    align-items: stretch;
}
.swiper.photo-swiper {
    padding-bottom: 50px;
    overflow: hidden;
}
.photo-slide {
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    height: auto;
    display: flex;
    flex-direction: column;
    transition: opacity 0.2s;
}
.photo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.photo-swiper .swiper-pagination-bullet {
    background: #020202;
    opacity: 0.25;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}
.photo-swiper .swiper-pagination-bullet-active {
    background: #ff3c00;
    opacity: 1;
    transform: scale(1.2);
}
.slider-section h2 {
    text-transform: uppercase;
    margin-bottom: 24px;
}
.photo-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background-color: #f3f4f5;
    cursor: pointer;
}
.photo-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 60, 0, 0.85);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.photo-zoom-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.photo-slide:hover .photo-image-wrapper img {
    transform: scale(1.08);
}
.photo-slide:hover .photo-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
/* End */


/* Start:/local/templates/uralsteel_2024/components/bitrix/news.list/youth_work/style.css?17845342322545*/
.news-swiper .news-slide {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #020202;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(2, 2, 2, 0.06);
}
.news-swiper .news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-swiper .news-content {
    padding: 20px 20px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
    min-height: 0;
}
.news-swiper .news-title {
    font-size: 18px;
    color: #020202;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    flex: 1;
    margin-bottom: 0;
}
.news-swiper .news-slide:hover .news-title {
    color: #ff3c00;
}
.news-swiper .news-date {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    margin-bottom: 0;
}
.news-swiper .news-swiper-wrapper {
    position: relative;
}
.news-swiper .news-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.news-swiper .news-navigation .swiper-button-prev,
.news-swiper .news-navigation .swiper-button-next {
    position: static;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #020202;
    border: 2px solid rgba(2, 2, 2, 0.1);
    transition: all 0.3s ease;
    margin: 0;
}
.news-swiper .news-navigation .swiper-button-prev:hover,
.news-swiper .news-navigation .swiper-button-next:hover {
    background: #ff3c00;
    color: #ffffff;
    border-color: #ff3c00;
}
.news-swiper .news-navigation .swiper-button-prev::after,
.news-swiper .news-navigation .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}
.news-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}
.news-swiper .swiper-wrapper {
    align-items: stretch;
}
.news-swiper {
    padding-bottom: 20px;
    overflow: hidden;
}
.news-swiper-wrapper {
    position: relative;
    overflow: hidden;
}
.news-image-wrapper{
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background-color: #f3f4f5;
}
.news-slide:hover .news-image {
    transform: scale(1.08);
}
.slider-section h2 {
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* End */
/* /local/templates/uralsteel_2024/components/bitrix/news.list/youth-work_navigation/style.css?17845342321729 */
/* /local/templates/uralsteel_2024/components/bitrix/news.detail/youth_work_slider/style.css?17845342321867 */
/* /local/templates/uralsteel_2024/components/bitrix/news.list/youth_work/style.css?17845342322545 */
