

/* Start:/local/templates/mz/components/bitrix/news.list/main_page_banner/style.css?17394557522818*/
.main_banner_slide_mobile {
 display: none;	
}
.main_banner_slide {
    height: 490px;
    background-size: cover !important;
    background-position: center 0 !important;
    border-radius: 8px;
    position: relative;
    padding-left: 70px;
    border-radius: 8px;	
}
.main_banner_info {
    width: 50%;
    position: relative;
    z-index: 1000;
    min-width: 600px;
}
.main_banner_block {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(30px);
    border-radius: 10px;
    padding: 30px 30px 40px 30px;
    margin-bottom: 10px;
}

.main_banner_title {
	font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    color: #000;
    margin-bottom: 20px;
}

.main__banner_text {
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #000;	
}

.main_banner_form {
    background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(30px);
    border-radius: 10px;
    padding: 20px 30px 20px 30px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;	
}

.main_banner_input {
    margin-right: 10px;
	width: 65%;
}

.main_banner_input input  {
    width: 100%;
    height: 48px;
    border-radius: 5px;
    border: none;
    outline: none;
    font: 16px "Roboto", sans-serif;
    padding: 0 20px;	
}

.main_banner_button {	
	width: 35%;
}

.main_banner_button button {
    border: none;
    height: 48px;
    font-size: 18px;
	border-radius: 5px;
}

@media only screen and (max-width: 1023px) {
	.main_banner_input {
		margin-right: 10px;
		width: 100%;
	}
	.main_banner_button {
		width: auto;
	}	
}

@media only screen and (max-width: 639px) {
    .main_banner_slide {
		height: auto;
        background: #E8EDF4 !important;
        margin: 0;
        padding: 0;		
    }
	.main_banner_slide_mobile {
		display: block;
		width: 100%;
		height: 350px;
		background-size: cover !important;
	}
	.main_banner_info {
		width: 100%;
		position: relative;
		z-index: 1000;
		min-width: auto;
		margin-top: -50px;
	}	
	.main_banner_block {
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(30px);
		border-radius: 10px;
		padding: 20px 30px 20px 30px;
		margin-bottom: 10px;
	}	
	.main_banner_title {
		font-weight: 500;
		font-size: 21px;
		line-height: 27px;
		color: #000;
		margin-bottom: 20px;
	}
	.main__banner_text {
		font-weight: 400;
		font-size: 14px;
		line-height: 19px;
		color: #000;
	}
	.main_banner_form {
		padding: 20px;
		margin-bottom: 0;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-content: center;
		align-items: center;
	}
    .main_banner_input {
		width: 100%;
        margin: 0 0 10px 0;
    }	
    .main_banner_button {
        width: 100%;
    }	
	.main_banner_button button {
		height: 48px;
		font-size: 20px;
		width: 100%;
	}	
}
/* End */


/* Start:/local/templates/mz/components/bitrix/news.list/main_page_promotions/style.css?17817151965873*/
/* ============================================
   MZ Главная — блок «Акции и специальные предложения»
   ============================================ */

.mz-promo-section {
    margin: 60px 0;
}

.mz-promo-section__title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: #1a2a36;
    margin: 0 0 28px;
    padding-left: 18px;
}
.mz-promo-section__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #20a181, #178a6c);
}

/* Grid (desktop / tablet) */
.mz-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mz-promo-mobile { display: none; }

/* Карточка */
.mz-promo-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 30, 45, 0.08);
    border: 1px solid rgba(32, 161, 129, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.25, 1),
                box-shadow 0.32s ease,
                border-color 0.25s ease;
    will-change: transform;
}
.mz-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 30, 45, 0.16);
    border-color: rgba(32, 161, 129, 0.35);
}

.mz-promo-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef5f1 0%, #d8e8e0 100%);
    height: 260px;
    padding: 14px;
    box-sizing: border-box;
    overflow: hidden;
}

.mz-promo-card__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.25, 1);
}
.mz-promo-card:hover .mz-promo-card__img {
    transform: scale(1.04);
}

.mz-promo-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff5757;
    color: #fff;
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(255, 87, 87, 0.45);
    animation: mzPromoBadgePulse 2.6s ease-in-out infinite;
}
@keyframes mzPromoBadgePulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

.mz-promo-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mz-promo-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.32;
    color: #1a2a36;
    margin: 0 0 12px;
    /* мягкое ограничение по высоте — ровно 3 строки */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mz-promo-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s;
}
.mz-promo-card__title a:hover { color: #20a181; }

.mz-promo-card__dates {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff5e6;
    color: #b55c00;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
    align-self: flex-start;
}

.mz-promo-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    background: linear-gradient(135deg, #20a181 0%, #178a6c 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    margin-top: auto;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 6px 16px rgba(32, 161, 129, 0.25);
}
.mz-promo-card__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(32, 161, 129, 0.35);
    color: #fff;
}
.mz-promo-card__btn svg { transition: transform 0.18s; }
.mz-promo-card__btn:hover svg { transform: translateX(3px); }

/* Ссылка «Все акции» */
.mz-promo-section__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    color: #20a181;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color 0.18s, color 0.18s;
}
.mz-promo-section__all:hover {
    color: #178a6c;
    border-bottom-color: #178a6c;
}

/* Анимация появления при скролле */
.mz-promo-card[data-mz-promo-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.25, 1);
}
.mz-promo-card[data-mz-promo-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 1100px) {
    .mz-promo-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .mz-promo-section__title { font-size: 26px; }
    .mz-promo-card__media { height: 280px; }
}

/* Mobile (<768): swiper-слайдер вместо grid */
@media (max-width: 767px) {
    .mz-promo-section { margin: 36px 0; }
    .mz-promo-section__title { font-size: 22px; padding-left: 14px; margin-bottom: 18px; }
    .mz-promo-grid   { display: none; }
    .mz-promo-mobile { display: block; }
    .mz-promo-card__media { height: 320px; padding: 16px; }

    /* Перекрываем legacy-стили старого .promotions_mob_slider */
    .mz-promo-mobile .swiper-slide {
        height: auto;
        padding: 4px;
    }
    .mz-promo-mobile .mz-promo-card {
        height: 100%;
        margin: 0;
    }
}

/* Очень маленькие экраны */
@media (max-width: 380px) {
    .mz-promo-card__media { height: 260px; padding: 12px; }
}

/* End */


/* Start:/local/templates/mz/components/bitrix/news.list/main_page_specialization/style.css?1750173775450*/
.appointment_time_title .sub {
    color: #000;
    margin-bottom: 5px;
}
@media only screen and (max-width: 1023px) {
    .doctor_bottom_line {
        display: block;
    }
    .doctor_phone.mm {
        width: 100%;
        margin-top: 15px;
    }
}
@media only screen and (max-width: 576px) {
    .doctor_phone.mm {
        width: 100%;
        margin-top: 15px;
        padding-bottom: 20px;
    }
    .dr_choice {
        display: none;
    }
}
/* End */
/* /local/templates/mz/components/bitrix/news.list/main_page_banner/style.css?17394557522818 */
/* /local/templates/mz/components/bitrix/news.list/main_page_promotions/style.css?17817151965873 */
/* /local/templates/mz/components/bitrix/news.list/main_page_specialization/style.css?1750173775450 */
