@font-face {
    font-family: "MontserratRegular";  
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype"); 
    font-weight: 400;
    font-style: normal; 
}

@font-face {
    font-family: "MontserratMedium";  
    src: url("../fonts/Montserrat-Medium.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: 500;
}

@font-face {
    font-family: "MontserratSemiBold";  
    src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: 600;
}

@font-face {
    font-family: "MontserratBold";  
    src: url("../fonts/Montserrat-Bold.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: 700;
}

@font-face {
    font-family: "GabrielaRegular";
    src: url("../fonts/Gabriela-Regular.ttf") format("truetype");
    font-weight: 400;
}
:root {
  --p1-color: #A44056;
  --p2-color: hsl(347, 43%, 76%);
  --p3-color: #CE3859;
  --h1-color: #80001C;
  --h2-color: #E06878;
  --bg-color:#FFF4F4;
  --a-color: #FF7272;
  --nav-btn-color: #3A1019;
  --hover-color1: #CE3859;
  --hover-color2: #B54545;
  --hover-color3: #bd3a3a;
  --footer-color: #CF9C9C;
  --btn-color: #F3474E;
  --btn-hover-color: #e24247;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: var(--p1-color);
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body{
    font-family: 'MontserratRegular', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--p1-color);
    background-color: var(--bg-color);
}

h1,h2,h3,h4,h5,h6{
    font-family: 'MontserratSemiBold', sans-serif;
    color: var(--h1-color);
    font-size: 48px;
}
img{
    max-width: 100%;
}

input{
    border: 2px solid #FF7272;
    outline: none;
    padding: 20px;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(136, 104, 104, 0.9);
    font-size: 18px;
    width: 100%;
}

input[type="checkbox"] {
    padding: 0;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #FF7272;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
}

input[type="checkbox"]:checked::after {
    content: '';
    background: url('../img/checkbox.svg') no-repeat center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 8px;
}

input:focus{
    border: 2px solid #ff3939;
}

input::placeholder{
    color: rgba(136, 104, 104, 0.8);
    font-size: 18px;
}

img:not([src]):not([srcset]),
img[src=""] {
  background: none;
  border: 0;
  outline: none;
  color: #555;
}


.container{
    position: relative;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

header{
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-menu{
    justify-content: space-between;
}


.flex-row{
    display: flex;
    flex-direction: row;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.aic{
    align-items: center;
}

.aife{
    align-items: flex-end;
}

.jcsb{
    justify-content: space-between;
}

.logo-img{
    width: 100px;
}

.btn-primary{
    font-family: 'MontserratSemiBold', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 0;
    border-radius: 50px;
    padding: 15px;
    min-width: 120px;
    max-width: 360px;
    color: #fff;

    cursor: pointer;
    transition: .2s ease-out;

    background-image: linear-gradient(45deg, #ff0055, #ff5e62, #ff0055);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
}

.btn-primary:hover{
    background-position: right center;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
    transform: translateY(-2px);
}

.btn-secondary{
    font-family: 'MontserratSemiBold', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: 2px var(--btn-color) solid;
    background: none;
    color: var(--btn-color);
    padding: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: .2s ease-out;

}

.btn-secondary:hover{

    border: 2px #ff0008 solid;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);
}



.logo-container span{
    font-family: 'GabrielaRegular', sans-serif;
    font-size: 28px;
    color: #d33d43;
    padding-left: 20px;
    width: 166px;
    line-height: 0.9em;
}




.nav-btn{
    display: inline;
    text-transform: uppercase;
    position: relative;
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--nav-btn-color);
    padding: 20px;
    cursor: pointer;
}



.nav-btn:hover{
    color: var(--hover-color1);
}

.nav-btn.multi:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    width: 12px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/grayTickMenu.svg);
    transition: transform 0.3s;
}

.nav-btn.multi:hover:after {
    transform: translate(0,-50%) scale(1, -1);
}

.dropdown {
    position: relative;
}

/* ВЫПАДАЮЩИЕ МЕНЮ */
.submenu, .submenu2 {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    padding: 12px 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 99999;
}

.dropdown:hover .submenu,
.dropdown:hover .submenu2 {
    opacity: 1;
    visibility: visible;
}

/* Меню "Еще" - прижимаем к правому краю */
.dropdown:last-child .submenu {
    left: auto;
    right: 0;
}

/* Меню "Как помочь" - от левого края */
.dropdown:first-child .submenu2 {
    left: 0;
    right: auto;
}

/* Пункты меню */
.submenu .submenu-btn,
.submenu2 .submenu-btn {
    display: block;
    padding: 10px 24px;
    margin: 0;
    font-family: 'MontserratMedium', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #3A1019;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submenu .submenu-btn:hover,
.submenu2 .submenu-btn:hover {
    background: #FFF4F4;
    color: #CE3859;
}

.submenu .submenu-btn::after,
.submenu2 .submenu-btn::after {
    display: none;
}


#about-btn2{
    display: none;  
}

#article-btn2{
    display: none;
}

#report-btn2{
    display: none;
}

#mobile-dropdown{
    display: none;
}

#news-btn2{
    display: none;
}

#help-btn2{
    display: none;
}
#whatever-btn2{
    display: none;
}

.extra-btn{
    display: none;
}

.footer {
    background-color: var(--footer-color);
    padding: 60px 0;
}
.footer-wrap{
    justify-content: space-between;
    font-size: 14px;
    color: #fff;
}

.footer-block{
    max-width: 25%;
}

.footer-block img{
    height: 18px;
    width: 18px;
    margin-right: 12px;
}

.footer-block h2{
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    margin-bottom: 18px;
}

.footer-block p{
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.footer-block a{
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.footer-nav-block{
    display: flex;
    flex-direction: column;
}
.footer-nav ul{
    display: flex;
    flex-direction: column;
}

.footer-nav ul li{
    padding-bottom: 4px;
}

.footer-nav a{
    font-size: 16px;
}

.footer a:hover{
    color: var(--hover-color3);
}

.nav-block{
    margin-bottom: 20px;
}

.doc-block{
    padding-bottom: 12px;
}

.contact-block{
    padding-bottom: 12px;
}

.wpforms-container input.wpforms-field-medium{
    max-width:  100% !important;
}

.footer-feedback-block input{
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 20px;
    border: 0;
    outline: none;
    background-color: #fff;
    padding: 10px;
    color: rgba(136, 104, 104, 0.9);
    width: 200px;
}

.footer-feedback-block form{
    row-gap: 16px;
}

.footer-feedback-block input::placeholder{
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(136, 104, 104, 0.9);
}

.footer-feedback-block textarea{
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 20px;
    border: 0;
    outline: none;
    background-color: #fff;
    padding: 10px;
    color: rgba(136, 104, 104, 0.9);
    resize: none;
    width: 200px;
}
.footer-feedback-block textarea::placeholder{
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(136, 104, 104, 0.9);
}

.feedback-btn{
    padding: 12px 20px;
}

.main-info-section{
    background: url('../img/bg.jpg') no-repeat center / cover;

    padding: 100px 0;
}

.main-section-info-block{
    width: 700px;
}
.info-block-title:first-child{
    font-family: 'MontserratSemiBold', sans-serif;
    color: var(--h1-color);
    font-size: 52px;
    padding-bottom: 0px;
}

.info-block-title:nth-child(2){
    font-family: 'MontserratSemiBold', sans-serif;
    color: var(--h2-color);
    font-size: 52px;
    padding-bottom: 40px;
}

.info-block-text1{
    font-family: 'MontserratMedium', sans-serif;
    color: var(--p1-color);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.info-block-btns{
    justify-content: start;
    column-gap: 20px;
}

.help-btn{
    
    font-size: 16px;
    width: 240px;
    padding: 25px 20px;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
  

    background-image: linear-gradient(45deg, #ff0055, #ff5e62, #ff0055);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
}

.help-btn:hover{
    background-position: right center;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
    transform: translateY(-2px);
}

.to-fond-btn{
    font-size: 16px;
    border: 2px var(--btn-color) solid;
    background: none;
    width: 240px;
    color: var(--btn-color);
    padding: 25px 20px;
    
}

.to-fond-btn:hover{
    background: none;
    border: 2px #ff0008 solid;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);

}

.help-section{
    z-index: 3;
    padding: 100px 0;
}


.help-section-info{
    justify-content: space-between;
}

.more-details{
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #6B4F55;
    background: none;
    border: 0;
    position: relative;
    transition: .2s ease-out;
}

.more-details:hover{
    color: #c04c63;
    cursor: pointer;
}

.more-details::after{
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background: #c04c63;
    opacity: 0;
    transition: .2s ease-out;
}

.more-details:hover::after{
    opacity: 1;
}

.flowers-bg{
    position: absolute;
    pointer-events: none;
    height: 90%;
}


.flowers-bg-left{
    top: 0;
    left: -20%;
    
}

.flowers-bg-right{
    top: 0;
    right: -20%;
    
}


.fundraiser-cards{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-around;
    align-items: stretch;
}

.cards-cover {
    width: 100%;
    height: 200px;
    min-height: 200px;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.cards-cover img{

    transition: .3s ease-out;
}

.cards-cover img:hover{
    transform: scale(1.1);

}

.card-avatar{
    width: 100%;
    height: 100%;
    
}

.fundraiser-card{
    position: relative;
    flex: 1;
    display: flex;          
    flex-direction: column; 
    height: auto;   
    background-color: #fff;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    

    
    transition: .2s ease-out;
}

.fundraiser-card:hover{
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-content{
    width: 100%;
    height: 100%;
    justify-content: space-between;
    padding: 15px;
    font-family: 'MontserratMedium', sans-serif;
    color: var(--p1-color);
    font-weight: 500;
}

.card-content-info{
    
    display: flex;
    flex-direction: column;
    
}

.person-name{
    font-family: 'MontserratMedium', sans-serif;
    color: #351018;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;

    
}

.diagnos{
    font-family: 'MontserratMedium', sans-serif;
    color: var(--p1-color);
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid #e05a5a;
    padding-left: 8px;
    background: #fef7f0;
    margin-bottom: 20px;

    min-height: 20px;
}

.fund-stats{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}


.collected{
    color: #2b7e3a;
    font-size: 16px;
}

.goal{
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #E06878;
}

.progress-section{
    margin-top: 10px;
    margin-bottom: 20px;
}

.progress-bar-bg{
    background-color: #e9edf2;
    border-radius: 60px;
    height: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.progress-fill{
    background: linear-gradient(90deg, #3ba85a, #64c47c);
    width: 0%;
    height: 100%;
    border-radius: 60px;
    transition: width 0.4s ease;
}

.amount-row{
    margin: 20px 0;
}

.current-amount{
    font-size: 18px;
    color: #351018;
}

.current-amount small{
    color: #351018;
}


.donate-btn{
    font-size: 16px;
    border: 2px var(--btn-color) solid;
    background: white;
    width: 180px;
    color: var(--btn-color);
    margin-bottom: 20px;
}

.donate-btn:hover{

    border: 2px #ff0008 solid;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);

}

.donate-btn::after{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url('../img/heart-ico.svg') no-repeat center;
    background-size: contain;
    vertical-align: middle;
    margin-left: 4px;
}





/* Стили для модального окна */
.leyka-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
/*     overflow-y: auto; */
}

.leyka-modal-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    background-color: #E04F66;
    width: 80%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    
}


.leyka-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.leyka-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    
}

.leyka-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.leyka-modal-close:hover {
    color: #333;
}

.leyka-modal-body {
    
    padding: 25px;
    max-height: 70vh;
    overflow-y: auto;
}


.leyka-tpl-star-form .section .section__fields .star-swiper .swiper-list, .leyka-tpl-star-form .section .section__fields .star-swiper .full-list, .leyka-screen-form .section .section__fields .star-swiper .swiper-list, .leyka-screen-form .section .section__fields .star-swiper .full-list {
    width: 100% !important;
}

.leyka-tpl-star-form .section .section__fields .star-swiper, .leyka-screen-form .section .section__fields .star-swiper {
    overflow: unset;
}

/* Адаптация формы Лейки внутри модального окна */
.leyka-modal-body .leyka-payment-form {
    margin: 0;
}


/* Стили модального окна */
.modal-program {

    width: 100%;
    max-width: 800px; 
    
    height: auto;
    max-height: 85vh; 
    
    margin: auto;
    border: none;
    border-radius: 12px;
    padding: 40px 20px 20px 20px; /* Сверху отступ больше, чтобы кнопка не перекрывала картинку */
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

/* Затемнение фона вокруг диалога */
.modal-program::backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

/* Картинка внутри модального окна */
.modal-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(85vh - 80px); /* Вычитаем отступы модалки, чтобы не появилось прокрутки */
    object-fit: contain;
    border-radius: 8px;
    margin: 30px auto 0 auto;
}

/* Кнопка закрытия */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f1f1f1;
    color: #5d5d5d;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    z-index: 10; /* Кнопка всегда поверх картинки */
}

.close-btn:hover {
    background-color: #e0e0e0;
    color: #000;
}

.programs-section{
    padding-bottom: 100px;
}

.programm-cards{
    justify-content: space-between;
    flex: 1;
    gap: 20px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.programm-card{
    max-width: 100%;
    
}

.program-btn{
        width: unset;
}

.program-description{
    word-break: break-word;
    font-family: 'MontserratMedium', sans-serif;
    color: var(--p1-color);
    font-size: 14px;
    font-weight: 500;
    border: none;
    padding-left: 8px;
    background: none;
    margin-bottom: 20px;
}

.program-description p{
    word-break: break-word;
    font-family: 'MontserratMedium', sans-serif;
    color: var(--p1-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.news-section {
    padding-bottom: 100px;
}

/* Новая сетка: левая главная + правая колонка */
.news-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
    height: 400px;
}

/* Левая колонка с главной новостью */
.news-main {
    flex: 1.2;
    min-width: 0;
    
}

/* Правая колонка */
.news-side {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow-y: scroll;
    padding-bottom: 20px;
}

/* Общие стили для блоков новостей */
.news-block {
    display: flex;
    flex-direction: column;
    box-shadow: 2px 4px 12px -1px rgba(0, 0, 0, 0.2);
    transition: .3s ease-out;
    text-decoration: none;
    
    background-color: #ffffff;
}
.news-block:hover{
    box-shadow: 2px 4px 16px -1px rgba(0, 0, 0, 0.3);
}



.news-block:hover .news-card-content {
    background-color: #fddfe2;
}

.news-block:hover .news-title {
    color: #b11637;
}

.news-block:hover .news-date {
    color: #2e2c2c;
}

/* Главный блок (левый) */
.news-card-cover {
    height: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
}

.news-block-main{
    height: 100%    ;
}

.news-block-main .cards-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #EBB8B8;
    min-height: unset;
}

/* Блоки в правой колонке */
.news-block-side {
    flex-direction: row;
    align-items: center;
    margin-right: 10px;
    width: 95%;
    
}

.news-card-cover-side {
    flex-shrink: 0;
    width: 120px;
    height: 100%;
    border-radius: 0;
    min-height: unset;
}

.news-card-cover-side img {
    width: 100%;
    height: 100%;
    
}

.news-card-content-side {
    flex: 1;
    padding: 15px;
    height: 100%;
}

.news-card-content-side .news-title {
    margin-top: 8px;
    font-size: 18px;
}

.news-card-content-side .news-date {
    font-size: 14px;
}

/* Общие стили */
.news-card-avatar{
    border-radius: none;
}
.cards-cover {
    overflow: hidden;
}

.cards-cover img {
    object-fit: cover;
    transition: .3s ease-out;
    display: block;
}

.news-card-content {
    background-color: #ffffff;
    padding: 20px;
    transition: .3s ease-out;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-block-card-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.news-date {
    font-size: 18px;
    color: #4E4949;
    transition: .3s ease-out;
    margin: 0;
}

.news-title {
    display: block;
    margin-top: 12px;
    font-family: 'MontserratMedium', sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #000;
    transition: .3s ease-out;
}

.mail-section{
    padding-bottom: 100px;
}

.mail-section-title{
    margin-top: 10px;
    margin-bottom: 20px;
}

.mail-info-block-title{
    font-family: 'MontserratMedium', sans-serif;
    color: var(--h2-color);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 40px;
}

.mail-btn{
    margin-left: 20px;
    padding: 20px 30px;
    font-size: 20px;
}
.mail-input{
    padding: 20px 20px;
    width: 600px;
}

.mail-checkbox-container{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 40px; 
    cursor: pointer;
}

.mail-checkbox{
    flex-shrink: 0;
    
    accent-color: var(--h2-color); 
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-text {
    font-family: 'MontserratRegular', sans-serif;
    font-size: 14px;
    
    color: var(--a-color);
}

.checkbox-text a {
    color: inherit;
    transition: opacity 0.2s;
    text-decoration: underline;
}

.checkbox-text a:hover {
    opacity: 0.7;
}

.tnp-subscription input[type=submit]{
    font-family: 'MontserratSemiBold', sans-serif !important;
    font-weight: 600 !important;
    text-align: center !important;
    border: 0 !important;
    border-radius: 50px !important;
    min-width: 120px !important;
    max-width: 360px !important;
    color: #fff !important;

    margin-left: 20px !important;;
    padding: 20px 30px !important;;
    font-size: 20px !important;;

    width: unset !important;

    cursor: pointer !important;
    transition: .2s ease-out !important;

    background-image: linear-gradient(45deg, #ff0055, #ff5e62, #ff0055) !important;
    background-size: 200% auto !important;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3) !important;
}

.tnp-subscription input[type=email]{
    border: 2px solid #FF7272 !important;
    outline: none !important;
    padding: 20px !important;
    border-radius: 40px !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: rgba(136, 104, 104, 0.9) !important;
    font-size: 18px !important;
    width: 600px !important;
}

div.tnp-subscription{
    margin: unset !important;
    max-width: unset !important;
}
.main-donation-section {
    background: #df5068;
    padding: 90px 0;
    overflow: hidden;
}

.tnp-subscription label{
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-top: 40px !important;
    cursor: pointer !important;
}

.donation-section-title {
    color: #fff;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.donation-main-block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}



/* ========================================
   LEFT COLUMN
======================================== */

.donation-block {
    width: 62%;
}

/* ========================================
   RIGHT COLUMN
======================================== */

.recent-donations {
    width: 38%;
}

.recent-section-title {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
}

.recent-donation-blocks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    
    overflow-y: auto;
    padding-right: 10px;
}

.recent-donation-blocks::-webkit-scrollbar {
    width: 6px;
}

.recent-donation-blocks::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.5);
    border-radius: 20px;
}

.recent-donation-block {
    background: rgba(255,255,255,.95);
    border-radius: 18px;
    padding: 18px 22px;
    transition: .2s ease;
}


.donation-main-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.donation-data {
    color: #d44d66;
    font-size: 15px;
    font-family: "MontserratMedium";
}

.payment-opt__icon{
    max-width: 100% !important;
}

.leyka-swiper-list, 
.swiper-list {
   
}

/* Настройка самих элементов внутри слайдера */
.leyka-swiper-list .swiper-slide,
.swiper-list .swiper-slide {
   
}

.leyka-tpl-star-form .section .section__fields.periodicity a, .leyka-screen-form .section .section__fields.periodicity a {
    margin-left: 0px !important;

}

div[id*="leyka-pf-"].leyka-pf-star .leyka-tpl-star-form .section .section__fields, div[id*="leyka-pf-"].leyka-pf-star .leyka-account-form .section .section__fields {
    gap: 10px !important;
}

div[id*="leyka-pf-"].leyka-pf-star .leyka-tpl-star-form .section, div[id*="leyka-pf-"].leyka-pf-star .leyka-account-form .section {
    
}

div[id*="leyka-pf-"].leyka-pf-star:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    max-width: 100%;
    width: auto;
}
/* ===== СТИЛИ ДЛЯ WPForms (обратная связь) ===== */

/* Контейнер формы */
.footer-feedback-block .wpforms-container {
    background: transparent !important;
    padding: 0 !important;
}

/* Каждое поле — вертикальный блок */
.footer-feedback-block .wpforms-field {
    padding: 0 0 8px 0 !important;
    margin-bottom: 0 !important;
    display: block !important;
    text-align: left !important;
}

/* Подписи — сверху над полем */
.footer-feedback-block .wpforms-field-label,
.footer-feedback-block .wpforms-field-sublabel {
    display: block !important;
    font-size: 12px !important;
    margin-bottom: 4px !important;
    color: #fff !important;
    text-align: left !important;
}

/* Подписи для полей имени (если есть) */
.footer-feedback-block .wpforms-field-row-block .wpforms-field-sublabel {
    display: block !important;
    margin-top: 2px !important;
}

/* Все поля ввода */
.footer-feedback-block .wpforms-field input.wpforms-field-input,
.footer-feedback-block .wpforms-field textarea.wpforms-field-input,
.footer-feedback-block .wpforms-field select.wpforms-field-input {
    width: 260px !important;
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px !important;
    border: 0 !important;
    outline: none;
    background-color: #fff !important;
    padding: 8px 15px !important;
    color: rgba(136, 104, 104, 0.9);
    box-sizing: border-box;
    margin: 0 !important;
    display: block !important;
}

/* Выпадающий список */
.footer-feedback-block .wpforms-field select.wpforms-field-input {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 50px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23886868" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Текстовое поле */
.footer-feedback-block .wpforms-field-textarea textarea.wpforms-field-input {
    resize: none;
    border-radius: 25px !important;
    padding: 10px 15px !important;
}

/* Плейсхолдеры */
.footer-feedback-block .wpforms-field-input::placeholder {
    font-family: 'MontserratMedium', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: rgba(136, 104, 104, 0.7);
}

/* Кнопка отправки */
.footer-feedback-block .wpforms-submit {
    font-family: 'MontserratSemiBold', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 0;
    border-radius: 50px !important;
    padding: 8px 20px;
    min-width: 120px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s ease-out;
    background-image: linear-gradient(45deg, #ff0055, #ff5e62, #ff0055);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
    margin-top: 4px !important;
}

.footer-feedback-block .wpforms-submit:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
    transform: translateY(-2px);
}

/* Сообщение об успешной отправке */
.footer-feedback-block .wpforms-confirmation-container {
    background: #2b7e3a;
    color: white;
    padding: 10px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 16px;
    font-size: 14px;
}

/* Ошибки */
.footer-feedback-block .wpforms-error-container {
    color: #ff6b6b;
    font-size: 12px;
    text-align: center;
    margin-bottom: 8px;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ВЫПАДАЮЩЕГО СПИСКА WPForms ===== */

/* Все выпадающие списки в форме */
.footer-feedback-block select,
.footer-feedback-block .wpforms-field select,
.footer-feedback-block select.wpforms-field-input {
    width: 260px !important;
    font-family: 'MontserratMedium', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    border-radius: 50px !important;
    border: 0 !important;
    outline: none !important;
    background-color: #fff !important;
    padding: 8px 30px 8px 15px !important;
    color: rgba(136, 104, 104, 0.9) !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23886868" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
}

/* Выпадающий список при наведении */
.footer-feedback-block select:hover,
.footer-feedback-block .wpforms-field select:hover {
    background-color: #fff !important;
}

/* Выпадающий список в фокусе */
.footer-feedback-block select:focus,
.footer-feedback-block .wpforms-field select:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Стиль для опций внутри выпадающего списка */
.footer-feedback-block select option {
    border-radius: 0 !important;
    background-color: #fff !important;
    color: rgba(136, 104, 104, 0.9) !important;
}

/* ===== ГЕРОЙ-СЕКЦИЯ: УТОЧНЁННЫЙ ДИЗАЙН ===== */
.campaign-hero-final {
    background: #FFF4F4;
    padding: 60px 0;
    position: relative;
}

/* Тонкий декоративный элемент фона */
.campaign-hero-final::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(224,104,120,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid-final {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* ===== ФОТО ===== */
.hero-photo-final {
    flex: 1.2;
    min-width: 350px;
}

.photo-frame-final {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 8px;
}

.photo-frame-final img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.photo-frame-final:hover img {
    transform: scale(1.02);
}

.photo-caption-final {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 0 0 8px;
}

.caption-dot {
    width: 6px;
    height: 6px;
    background: #E06878;
    border-radius: 50%;
    display: inline-block;
}

.photo-caption-final span {
    font-size: 13px;
    font-family: 'MontserratMedium', sans-serif;
    color: #A44056;
    letter-spacing: 0.3px;
}

/* ===== ИНФОРМАЦИЯ ===== */
.hero-info-final {
    flex: 1;
    min-width: 320px;
}

.info-header-final {
    margin-bottom: 24px;
}

.header-subtitle {
    font-size: 12px;
    font-family: 'MontserratMedium', sans-serif;
    color: #E06878;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.hero-info-final h1 {
    font-size: 48px;
    font-weight: 700;
    color: #80001C;
    font-family: 'MontserratBold', sans-serif;
    line-height: 1.2;
}

/* Карточка с возрастом и диагнозом */
.info-card-final {
    background: #fff;
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(224,104,120,0.1);
}

.info-row-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.info-row-final:first-child {
    border-bottom: 1px solid #f0e6e6;
}

.info-label-final {
    font-size: 14px;
    font-family: 'MontserratMedium', sans-serif;
    color: #80001C;
}

.info-value-final {
    font-size: 15px;
    font-family: 'MontserratSemiBold', sans-serif;
    color: #A44056;
}

/* Карточка цели сбора */
.goal-card-final {
    background: linear-gradient(135deg, #E06878 0%, #c45464 100%);
    border-radius: 20px;
    padding: 18px 22px;
    margin-bottom: 30px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 8px 20px rgba(224,104,120,0.2);
}

.goal-icon {
    flex-shrink: 0;
    color: rgba(255,255,255,0.9);
}

.goal-content {
    flex: 1;
}

.goal-label-final {
    font-size: 11px;
    font-family: 'MontserratMedium', sans-serif;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.goal-text-final {
    font-size: 15px;
    font-family: 'MontserratRegular', sans-serif;
    color: #fff;
    line-height: 1.45;
    margin: 0;
}

/* Кнопка (стиль как на всём сайте) */
.btn-wrapper-final {
    text-align: left;
}

.donate-btn-final {
    font-family: 'MontserratSemiBold', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: 2px solid #F3474E;
    background: none;
    width: auto;
    min-width: 180px;
    color: #F3474E;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.donate-btn-final::after {
    content: "♥";
    font-size: 14px;
    transition: transform 0.3s ease;
}

.donate-btn-final:hover {
    background: none;
    border: 2px solid #ff0008;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);
}

.donate-btn-final:hover::after {
    transform: scale(1.1);
}



/* ===== КНОПКИ ТАБОВ (как на главной странице) ===== */

.tab-buttons-wrapper {
    background: #fff;
    margin-bottom: 30px;
}
.tabs-content-block {
    background: #fff;
    border-radius: 32px;
    margin: 40px 0 60px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(224,104,120,0.1);
}

.tab-buttons {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    justify-content: center;
}

.tab-btn {
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid #F3474E;
    border-radius: 50px;
    color: #F3474E;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

/* Эффект при наведении — как у btn-secondary на главной */
.tab-btn:hover {
    background: none;
    border: 2px solid #ff0008;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);
}

/* Активная кнопка — как у btn-primary на главной */
.tab-btn.active {
    background-image: linear-gradient(45deg, #ff0055, #ff5e62, #ff0055);
    background-size: 200% auto;
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
}

.tab-btn.active:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
    transform: translateY(-2px);
}
/* ===== ВКЛАДКА ИСТОРИЯ: улучшенное оформление ===== */
.history-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.history-text {
    flex: 2;
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    font-family: 'MontserratRegular', sans-serif;
}

.history-text-header {
    margin-bottom: 30px;
}

.history-text-header h2 {
    font-size: 32px;
    color: #80001C;
    font-family: 'MontserratBold', sans-serif;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.history-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F3474E, #ff8a8a);
    border-radius: 3px;
}

.history-text p {
    margin-bottom: 20px;
}

/* Первая буква истории — буквица */
.history-text p:first-of-type::first-letter {
    font-size: 48px;
    font-weight: 700;
    color: #F3474E;
    float: left;
    padding-right: 8px;
    line-height: 0.8;
}

.history-sidebar {
    flex: 1;
    min-width: 280px;
    position: sticky;
    top: 100px;
}

.history-photo {
    background: linear-gradient(135deg, #fff 0%, #fef7f0 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    border: 1px solid rgba(164, 64, 86, 0.15);
    transition: transform 0.3s ease;
}

.history-photo:hover {
    transform: translateY(-5px);
}

.history-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.history-donate-btn {
    width: 100%;
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 20px;
    background-image: linear-gradient(45deg, #ff0055, #ff5e62, #ff0055);
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
}

.history-donate-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.4);
}

/* ===== КНОПКА "ПОМОЧЬ" В ГЕРОЙ-СЕКЦИИ ===== */
.hero-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.hero-btn-wrapper .donate-btn {
    width: auto;
    min-width: 200px;
    padding: 12px 28px;
    font-size: 16px;
    border: 2px solid var(--btn-color);
    background: none;
    color: var(--btn-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-wrapper .donate-btn::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('../img/heart-ico.svg') no-repeat center;
    background-size: contain;
    vertical-align: middle;
}

.hero-btn-wrapper .donate-btn:hover {
    background: none;
    border: 2px solid #ff0008;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);
}

/* Убеждаемся, что hero-info позволяет центрировать */
.hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-btn-wrapper {
    align-self: center;
    width: 100%;
}

/* Кнопка в истории (справа) */
.history-sidebar {
    text-align: center;
}

.history-sidebar .donate-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid var(--btn-color);
    background: none;
    color: var(--btn-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.history-sidebar .donate-btn::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('../img/heart-ico.svg') no-repeat center;
    background-size: contain;
    vertical-align: middle;
}

.history-sidebar .donate-btn:hover {
    background: none;
    border: 2px solid #ff0008;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);
}

/* ===== ПРОГРЕСС-БАР В САЙДБАРЕ ===== */
.sidebar-progress {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 16px;
    margin: 20px 0;
}

.sidebar-progress .fund-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.sidebar-progress .collected {
    color: #2b7e3a;
    font-weight: 600;
}

.sidebar-progress .goal {
    color: #E06878;
    font-weight: 600;
}

.sidebar-progress .progress-bar-bg {
    background-color: #e9edf2;
    border-radius: 60px;
    height: 8px;
    overflow: hidden;
    margin: 10px 0;
}

.sidebar-progress .progress-fill {
    background: linear-gradient(90deg, #3ba85a, #64c47c);
    height: 100%;
    border-radius: 60px;
}

.sidebar-progress .progress-percent {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== ГАЛЕРЕЯ С ЛАЙТБОКСОМ ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item a {
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.document-link:hover {
    background: #fef7f0;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.document-thumbnail {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.document-icon {
    width: 32px;
    height: 32px;
}

.document-link span {
    font-family: 'MontserratMedium', sans-serif;
    font-size: 14px;
    color: #80001C;
    flex: 1;
}

/* ===== НОВОСТИ С КАРТИНКОЙ ===== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #F3474E;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-image:hover img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
}

.news-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.news-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.news-content h3 a {
    color: #80001C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #F3474E;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.read-more {
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 13px;
    color: #F3474E;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(3px);
    color: #ff0008;
}

.no-news {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #888;
}

/* ===== ОТДЕЛЬНЫЙ БЛОК ДЛЯ ИСТОРИИ/ГАЛЕРЕИ/ДОКУМЕНТОВ ===== */
.tabs-content-block {
    background: #fff;
    border-radius: 32px;
    margin: 40px 0 60px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(224,104,120,0.1);
}

/* Расстояние от кнопок табов до контента */
.tab-buttons-wrapper {
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

/* ===== СТИЛИ ДЛЯ БЛОКА ОПЛАТЫ (ЛЕЙКА) ===== */

/* ===== ПЕРЕОПРЕДЕЛЕНИЕ CSS-ПЕРЕМЕННЫХ ЛЕЙКИ ===== */
:root {
    --leyka-color-main: #E04F66;
    --leyka-color-main-second: #FFC0C0;
    --leyka-color-text-light: #FFFFFF;
    --leyka-color-main-third: #EFD7D7;
    --leyka-color-main-inactive: rgba(224, 79, 102, 0.5);
    --leyka-color-error: #CE3859;
    --leyka-color-gray-dark: #80001C;
    --leyka-color-gray-semi-dark: #A44056;
    --leyka-color-gray: #666666;
    --leyka-color-gray-superlight: #EFD7D7;
    --leyka-color-white: #FFFFFF;
    --leyka-color-gradient: #FF7878;
    --leyka-font-main: 'MontserratRegular', sans-serif;
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        width: 100%;
        margin: 0 auto;
    }

    .flowers-bg-left{
        top: 0;
        left: -20%;
        display: none;
        
    }

    .flowers-bg-right{
        display: none;
        
    }
    
    .g-recaptcha > div{
        width: 100% !important;
    }

    .rc-anchor-normal .rc-anchor-content {
        width: 100% !important;
    }
    .rc-anchor-normal-footer {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .wpforms-submit-container{
        text-align: center !important;
    }
    

    
    .tnp-subscription input[type=submit]{
        width: 400px !important;
    }
    .header-menu {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-btn {
  
        padding-right: 12px;
        font-size: 14px;
    }
    
    .logo-container span {
        font-size: 20px;
        width: 126px;
    }
    
    .logo-img {
        width: 60px;
    }

    .fundraiser-card{
        max-width: 50%;
        flex: auto;
        width: 40%;
    }

    .programm-cards{
        grid-template-columns: 1fr 1fr;
    }
    .programm-card{
        max-width: unset;
        width:unset;
        height: 100%;
    }

    .news-layout {
        gap: 10px;
    }
    .news-card-content-side .news-title{
        font-size: 14px;
    }
    .news-card-content{
        padding: 10px;
    }

    .news-title{
        font-size: 14px;
    }
    .news-card-content{
        padding: 10px;
    }

    .news-card-cover-side {
        flex-shrink: 1;
    }
    .donation-section-main-block{
        gap: 10px;
        align-items: unset;
        height: 300px;      
    }
    .donation-block .wrap{
        align-items: unset;
    }

    .btn-donation{
        
        padding: 8px 12px;
    }

    .recent-donations{
        display: none;
    }

    .donation-block{
        width: 100%;
    }

    .recent-section-title{
        font-size: 14px;
    }

    .donation-section-title{
        font-size: 28px;
    }

    .footer-block h2{
        font-size: 14px;
    }
    .footer-block p{
        font-size: 12px;
    }

    .footer-block a{
        font-size: 12px;
    }

    .footer-block img{
        margin-right: 6px;
    }

    .nav-block{
        margin-bottom: 0px;
        width: 100%;
    }

    .footer-nav-block {
        justify-content: space-between;
    }

    .footer-feedback-block input{
        max-width: 100% !important;
    }

    .footer-feedback-block textarea{
        width: 100%;
    }

    #report-btn{
        display: none;
    }
    #report-btn2{
        display: block;
    }

    #mobile-dropdown{
        display: block;
    }
    
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .wpforms-field-medium .wpforms-field-required{
        max-width: 100% !important;
    }
    .tnp-subscription input[type=email]{
        width: 100% !important;
    }
    .donation-section {
        padding: 25px;
        margin: 0 15px;
    }
    
    .donation-section h2 {
        font-size: 24px;
    }

    .footer-feedback-block .wpforms-field input.wpforms-field-input,
    .footer-feedback-block .wpforms-field textarea.wpforms-field-input,
    .footer-feedback-block .wpforms-field select.wpforms-field-input {
        width: 100% !important;
    }

    .hero-grid-final {
        flex-direction: column;
    }
    
    .hero-photo-final {
        min-width: 280px;
    }
    
    .hero-info-final h1 {
        font-size: 36px;
    }
    
    .btn-wrapper-final {
        text-align: center;
    }
    
    .goal-card-final {
        padding: 15px 18px;
    }

    .history-layout {
        flex-direction: column;
    }
    
    .history-sidebar {
        position: static;
        width: 100%;
    }
    
    .history-text {
        font-size: 16px;
    }
    
    .history-text-header h2 {
        font-size: 26px;
    }
    
    .history-text p:first-of-type::first-letter {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 160px;
    }

    .news-item {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: 180px;
    }

    .tabs-content-block {
        padding: 20px;
        margin: 20px 0 40px;
    }
    
    .header-menu {
        align-items: center;
        gap: 15px;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .nav-btn {
        font-size: 12px;
        padding-right: 12px;
        padding-left: 12px;
    }

 

    .logo-container span{
        padding-left: 12px;
    }
    #news-btn1{
        display: none;
    }
    #news-btn2{
        display: block;
    }

    #article-btn1{
        display: none;
    }

    #article-btn2{
        display: block;
    }
    
    .main-info-section {
        padding: 60px 20px;
        background-position: 30% center;
    }
    
    .main-section-info-block {
        width: 100%;
        text-align: center;
    }
    
    .info-block-title:first-child,
    .info-block-title:nth-child(2) {
        font-size: 32px;
    }
    
    .info-block-text1 {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .info-block-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .help-btn, .to-fond-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .help-section {
        padding: 60px 0;
    }
    
    .help-section-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .help-section-title {
        font-size: 32px;
    }
    
    .fundraiser-cards {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .fundraiser-card {
        max-width: 100%;
        width: 80%;

    }
    
    .flowers-bg-left,
    .flowers-bg-right {
        display: none;
    }
    
    .programs-section {
        padding: 0 0 60px 0;
    }
    
    .programm-cards {
        grid-template-columns: 1fr;
    }
    
    .programm-card {
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
    }
    
    .news-section {
        padding-bottom: 60px;
    }
    
    .news-layout {
        flex-direction: column;
        height: auto;
    }
    
    .news-main {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .news-block-main {
        height: auto;
        min-height: 300px;
        width: 100%;
        
    }
    
    .news-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        overflow-y: visible;
        
    }
    
    .news-block-side {
        margin: 0;
        width: 100%;
    }
    
    .news-card-cover-side {
        flex-shrink: 1;
        width: 100%;
        height: stretch;
        
    }
    
    .news-card-content-side .news-title {
        font-size: 14px;
    }
    
    .news-date {
        font-size: 12px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .mail-section {
        padding-bottom: 60px;
    }
    
    .mail-section-title {
        font-size: 28px;
        text-align: center;
    }
    
    .mail-info-block-title {
        font-size: 18px;
        text-align: center;
    }
    
    .mail-form .wrap {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .mail-input {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .mail-btn {
        margin-left: 0;
        width: 100%;
    }
    
    .mail-checkbox-container {
        margin-top: 20px;
    }
    
    .main-donation-section {
        padding: 60px 0;
    }
    
    .donation-section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .donation-section-main-block {
        flex-direction: column;
        height: auto;
    }
    
    .donation-block {
        width: 100%;
    }
    
    .donation-block .wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-donation {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .donation-input {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .recent-donations {
        width: 100%;
        margin-top: 30px;
    }
    
    .recent-section-title {
        text-align: center;
    }
    
    .footer {
        padding: 40px 0;
    }
    
    .footer-wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-block {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }
    
    .footer-block h2 {
        font-size: 18px;
    }
    
    .contact-block {
        justify-content: center;
    }
    
    .footer-feedback-block form {
        align-items: center;
    }
    
    .footer-feedback-block input,
    .footer-feedback-block textarea {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .feedback-btn {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 12px;
    }
    
    .news-block-side {
        flex-direction: column;
        display: none;
    }
    
    .news-card-cover-side {
        width: 100%;
        height: unset;
    }
    .news-block-side{
        height: unset;
    }
    
    .info-block-title:first-child,
    .info-block-title:nth-child(2) {
        font-size: 28px;
    }
    
    .info-block-text1 {
        font-size: 14px;
    }
    
    .help-section-title {
        font-size: 28px;
    }
    
    .more-details {
        font-size: 14px;
    }
    
    .person-name {
        font-size: 18px;
    }
    
    .donation-block .wrap {
        gap: 8px;
    }
    
    .btn-donation {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .donation-input {
        font-size: 12px;
    }
    
    .recent-donation-block {
        padding: 12px;
        font-size: 12px;
    }
    

    
    .news-card-content-side {
        width: 100%;
    }
    
    #article-btn1{
        display: none;
    }
    
     #article-btn2{
        display: block;
     }

     .fundraiser-card{
        width: 90%;
        max-width: 100%;
     }

     .programm-card {
        width: 90%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    .leyka-modal-content{
        width: 100%;
    }
    .nav-btn {
        font-size: 11px;
    }
    
    #help-btn1{
        display: none;
    }
    #about-btn1{
        display: none;
    }
    #help-btn2{
        display: block;
    }
    #whatever-btn2{
        display: block;
    }
    #about-btn2{
        display: block;
    }
    
    .logo-container span {
        font-size: 16px;
        padding-left: 10px;
    }
    
    .logo-img {
        width: 45px;
    }
    
    .btn-donation {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .donation-block .wrap {
        gap: 6px;
    }

    /* Адаптивное сжатие фрейма Google reCAPTCHA на телефонах (до 480px) */
    .footer-feedback-block .wpforms-recaptcha-container,
    .footer-feedback-block .wpforms-field-recaptcha {
        max-height: unset;
    }
    .footer-feedback-block iframe[src*="google.com/recaptcha"],
    .footer-feedback-block .g-recaptcha {
        transform: scale(1);
        transform-origin: center top;
    }
}

/* Сжатие reCAPTCHA для особо узких экранов */
@media (max-width: 360px) {
    .footer-feedback-block .wpforms-recaptcha-container,
    .footer-feedback-block .wpforms-field-recaptcha {
        max-height: 78px;
    }
    .footer-feedback-block iframe[src*="google.com/recaptcha"],
    .footer-feedback-block .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center top;
    }
}

/* Кнопка СБП с полными стилями от .donate-btn и .btn-secondary */
.sbp-donate-btn {
    font-family: 'MontserratSemiBold', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px var(--btn-color) solid;
    background: white;
    color: var(--btn-color);
    padding: 15px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: .2s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 250px;
    text-decoration: none;
}

.sbp-donate-btn:hover {
    border: 2px #ff0008 solid;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);
}

.sbp-donate-btn::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../img/heart-ico.svg') no-repeat center;
    background-size: contain;
    vertical-align: middle;
    margin-left: 4px;
}

/* Мобильная кнопка СБП вместо QR-кода */
.sbp-mobile-btn {
    display: none;
}

@media (max-width: 768px) {
    .donation-main-block .qr-desktop {
        display: none !important;  
    }
    
    .sbp-mobile-btn {
        display: block !important;
        margin: 0 auto;
    }
    
    .sbp-arrow-img {
        display: block !important;
    }
}

/* Стрелка для мобильной кнопки СБП */
.sbp-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #F3474E;
    margin: 10px auto 0;
    animation: sbp-bounce 1.5s infinite;
}

@keyframes sbp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* На мобилке показываем */
@media (max-width: 768px) {
    .sbp-arrow {
        display: block !important;
    }
}

/* На десктопе скрываем */
@media (min-width: 769px) {
    .sbp-arrow {
        display: none !important;
    }
}

.sbp-mobile-btn {
    display: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center; 
}

.sbp-arrow-img {
    display: block;
    margin: 5px auto 0;
    width: 200px;
    height: 200px;
    animation: sbp-bounce 1.5s infinite;
    position: relative;
    left: 25%; 
}

@media (max-width: 768px) {
    .sbp-mobile-btn {
        display: block !important;
    }
}

/* Кнопка СБП (белая, как на главной) */
.sbp-donate-btn-white {
    font-family: 'MontserratSemiBold', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: 2px solid #F3474E;
    background: #FFFFFF;
    color: #F3474E;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: .2s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 280px;
    text-decoration: none;
    margin: 0 auto;
}

.sbp-donate-btn-white:hover {
    background: #FFFFFF;
    border: 2px solid #ff0008;
    color: #ff0008;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transform: translateY(-2px);
}

.sbp-donate-btn-white::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('../img/heart-ico.svg') no-repeat center;
    background-size: contain;
    vertical-align: middle;
    margin-left: 6px;
}

/* Стрелка под кнопкой */
.sbp-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #F3474E;
    margin: 10px auto 0;
    animation: sbp-bounce 1.5s infinite;
}

@keyframes sbp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* На мобилке показываем */
@media (max-width: 768px) {
    .sbp-arrow {
        display: block !important;
    }
}

/* На десктопе скрываем */
@media (min-width: 769px) {
    .sbp-arrow {
        display: none !important;
    }
}

/* Обёртка для мобильной кнопки */
.sbp-mobile-btn {
    display: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .sbp-mobile-btn {
        display: block !important;
    }
}

/* QR-код в модальном окне */
.qr-desktop {
    display: block;
    text-align: center;
}

.qr-desktop img {

    width: 100%;
    height: auto;
}

.qr-desktop p {
    margin-top: 12px;
    font-family: 'MontserratMedium', sans-serif;
    color: #80001C;
    font-size: 14px;
}

@media (max-width: 768px) {
    .qr-desktop {
        display: none !important;
    }
}


