.section-about {
    background: #715352 url("/local/templates/barkli-dan/images/sec_31_bg.png") center/cover no-repeat;
    padding: 30px 0;
    color: #fff;
    text-align: center;

}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 40px;
}

.about-title {
    font-family: "SangBleu Sunrise", serif;
    font-weight: 400;
    font-size: 34px;
    color: #fff;
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    width: 90%;
    margin: 0 auto;
    gap:8px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);

}

.about-item {
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.about-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

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

.about-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, rgb(14, 43, 66) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 14px 20px;
    font-family: "Isabella Sans", sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-align: left;
}

/* иконка лупы */
.about-zoom {
    position: absolute;
    right: 18px;
    bottom: 20px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.about-zoom:hover {
    background: #d4bfa1;
    transform: scale(1.1);
}
.about-zoom img {
    width: 60px;
    height: 60px;

}

/* адаптив */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-caption {
        font-size: 1rem;
        padding: 12px 16px;
    }
}


@media (max-width: 900px) {
    .about-title{
        font-size:21px!important;
        margin-bottom: 20px;
    }

}
