/* =====================================
   ABOUT HERO
===================================== */

.about-hero{

    padding:120px 0;

    text-align:center;

    background:
        linear-gradient(
            135deg,
            #fff,
            #f8f9fc
        );
}

.page-badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:30px;

    background:#fde8ef;

    color:#d10d55;

    font-weight:700;

    margin-bottom:20px;
}

.about-hero h1{

    font-size:64px;
    font-weight:800;

    color:#1f2937;

    margin-bottom:20px;
}

.about-hero p{

    max-width:800px;

    margin:auto;

    color:#667085;

    font-size:20px;

    line-height:1.8;
}

/* =====================================
   ABOUT SECTION
===================================== */

.about-section{

    padding:100px 0;
}

.about-grid{
    background : #d10d55;
    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:60px;

    align-items:center;
}

.about-image img{
    background : #fff;
    width:100%;

    /*border-radius:24px;*/

    display:block;
}

.section-tag{

    display:inline-block;

    margin-bottom:15px;

    color:#d10d55;

    font-weight:700;
}

.about-content h2{

    color : #fff;
    font-size:48px;

    margin-bottom:20px;
}

.about-content p{

    line-height:2;

    color:#ffffff;
}

/* =====================================
   MISSION
===================================== */

.mission-section{

    padding:80px 0;

    background:#f8f9fc;
}

.mission-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:25px;
}

.mission-card{

    background:#d10d55;

    padding:35px;

    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.mission-card h3{

    margin-bottom:15px;

    color:#ffffff;
}

.mission-card p{

    line-height:1.9;

    color:#ffffff;
}

/* =====================================
   VALUES
===================================== */

.values-section{

    padding:100px 0;
}

.section-title{

    text-align:center;

    font-size:48px;

    margin-bottom:50px;
}

.values-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:20px;
}

.value-card{

    background:#c8104d;

    border-radius:20px;

    padding:35px;

    text-align:center;

    font-size:32px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.value-card span{

    display:block;

    margin-top:15px;

    font-size:18px;

    font-weight:700;
    color:#fff;
}

/* =====================================
   IMPACT
===================================== */

.impact-section{

    padding:100px 0;

    background:#f8f9fc;
}

.impact-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:20px;
}

.impact-card{

    background:#fff;

    text-align:center;

    padding:40px;

    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.impact-card h3{

    color:#d10d55;

    font-size:42px;

    margin-bottom:10px;
}

.impact-card span{

    color:#667085;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .about-hero h1{
        font-size:40px;
    }

    .about-content h2{
        font-size:34px;
    }

    .section-title{
        font-size:34px;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .impact-grid{
        grid-template-columns:1fr;
    }

}
/* Contact Section */

.contact-section{
    padding:100px 0;
    background:#f8fafc;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}

.contact-info{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-info h2{
    margin:15px 0 25px;
}

.contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.contact-list li{
    margin-bottom:18px;
    line-height:1.8;
    color:#555;
}

.contact-list a{
    color:var(--primary-color);
    text-decoration:none;
}

.contact-map{
    min-height:500px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-map iframe{
    width:100%;
    height:100%;
    display:block;
}

@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-map{
        min-height:400px;
    }

}



/* Support Cases */

.support-cases-hero{
    padding:120px 0 80px;
    background:linear-gradient(
        135deg,
        #faf7f8,
        #ffffff
    );
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:50px;
    background:#c8104d;
    color:#fff;
    font-weight:600;
    margin-bottom:20px;
}

.support-cases-hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.support-cases-hero p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.9;
}

.support-cases-section{
    padding:90px 0;
}

.support-cases-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
    gap:30px;
}

.case-card{
    background:#c8104d;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.case-card:hover{
    transform:translateY(-6px);
}

.case-image{
    position:relative;
    height:250px;
    background: #fff;
}

.case-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.case-date{
    position:absolute;
    top:15px;
    right:15px;
    background:var(--primary-color);
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
}

.case-content{
    padding:25px;
    background: #c8104d;
}

.case-content h3{
    margin-bottom:15px;
    font-size:22px;
    line-height:1.5;
    color: #fff;
}

.case-content p{
    color:#ffffff;
    line-height:1.9;
    margin-bottom:25px;
}

.case-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:160px;
    height:48px;
    background:var(--primary-color);
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    transition:.3s;
}

.case-btn:hover{
    opacity:.9;
}

.pagination-wrapper{
    margin-top:50px;
    display:flex;
    justify-content:center;
}

.empty-state{
    text-align:center;
    padding:80px 0;
}

@media(max-width:768px){

    .support-cases-hero h1{
        font-size:34px;
    }

    .support-cases-grid{
        grid-template-columns:1fr;
    }

}





.research-info-section,
.scientific-council-section,
.administrative-section{
    padding:100px 0;
}

/* .research-grid,
.admin-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.research-card,
.admin-card{
    background:#c8104d;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    color: #fff;
} */
.research-group-section{
    padding:40px 0;
}

.research-group-section:not(:last-child){
    margin-bottom:30px;
}

.research-group-title{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:260px;
    height:60px;

    padding:0 40px;

    background: #c8104d;

    color:#fff;

    font-size:28px;
    font-weight:700;

    border-radius:50px;

    margin-bottom:40px;
}
.research-group-section{
    margin-bottom:60px;
}
.research-group-section{
    padding-bottom:50px;
    margin-bottom:50px;
    border-bottom:1px solid #ececec;
}

.research-group-section:last-child{
    border-bottom:none;
}
.council-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.member-card{
    background:#c8104d;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    color: #ffffff;
}

.member-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.member-card h4{
    margin:20px 0 10px;
}

.member-card span{
    display:block;
    color:#fff;
    margin-bottom:15px;
}

.member-card p{
    padding:0 20px 20px;
}

@media(max-width:992px){

    .research-grid,
    .admin-grid,
    .council-grid{
        grid-template-columns:1fr;
    }

}
.admin-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.admin-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.admin-card:hover{
    transform:translateY(-5px);
}

.admin-card-image{
    width:100%;
    height:260px;
    object-fit:cover;
}

.admin-card-body{
    padding:25px;
}

.admin-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color: #c8104d;
}

.members-count{
    font-size:18px;
    font-weight:700;
    color:#c8104d;
    margin-bottom:20px;
}

.admin-tasks{
    line-height:1.9;
    color:#555;
}

@media(max-width:992px){

    .admin-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .admin-grid{
        grid-template-columns:1fr;
    }

}

.research-hero{
    background:#f5f5f5;
    padding:70px 0;
    text-align:center;
}

.research-hero .container{
    max-width:1000px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:60px;
    padding:0 35px;

    background: #c8104d;

    color:#fff;

    border-radius:999px;

    font-size:24px;
    font-weight:700;

    margin-bottom:35px;
}

.research-hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
    color:#222;
}

.research-hero p{
    font-size:24px;
    line-height:1.9;
    color:#666;
    max-width:900px;
    margin:auto;
}

@media(max-width:992px){

    .research-hero{
        padding:100px 0;
    }

    .research-hero h1{
        font-size:48px;
    }

    .research-hero p{
        font-size:20px;
    }

}

@media(max-width:768px){

    .research-hero h1{
        font-size:36px;
    }

    .research-hero p{
        font-size:18px;
    }

    .hero-badge{
        font-size:18px;
        height:50px;
    }

}