.quick-glance{
    padding:80px 20px;
}
.container{
    max-width:1200px;
    margin:auto;
}
.section-title{
    text-align:center;
    margin-bottom:30px;
}
.section-title h2{
    font-size:38px;
    color:#14532d;
    margin-bottom:10px;
}
.section-title p{
    color:#666;
    font-size:17px;
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
}
.card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:all .35s ease;
    transform:translateY(30px);
    opacity:0;
}
.card.show{
    transform:translateY(0);
    opacity:1;
}
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}
.pb10{

    padding-bottom: 10px;
}
.card h3{
    font-size:22px;
    color:#14532d;
    margin-bottom:10px;
}
.card p{
    font-size:15px;
    line-height:1.6;
    color:#555;
}
@media(max-width:768px){
    .section-title h2{
        font-size:30px;
    }
}
.slider {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    margin: auto;
    position: relative;
    border-radius: 12px;
}
.slides {
    display: flex;
    transition: transform 0.5s ease;
}
.slides img {
    width: 100%;
    flex-shrink: 0;
    display: block;
}
/* Dots */
.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: #fff;
    transform: scale(1.2);
}
@media (max-width: 1400px) {
    .news-wrapper-mountain .news-left-items h2 {
        font-size: 35px;
    }
}
