.section-progress {
    background: #715352 url("/local/templates/barkli-dan/images/sec_31_bg.png") center/cover no-repeat;;
    color: #fff;
    padding: 40px 0;
    font-family: "Isabella Sans", sans-serif;
}


.progress-grid {
    display: grid;
    height: 80vh;
    grid-template-columns: 1fr 1.2fr 1.2fr 1.4fr; /* гибкая 4-колоночная сетка */
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: stretch;
}

.progress-col {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.brand-col {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

.brand-bg {
    height: 100%;
}

.brand-text {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.brand-name {
    font-size: 42px;
    font-weight: 600;
    color: #c9a57a;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 5px;
}

.photo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.progress-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(14, 43, 66, 0.8);
    color: #fff;
    padding: 18px 14px;
    font-size: 19px;
}

.text-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px 10px 0 20px;
}

.text-col p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.progress-doc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'SangBleu Sunrise', serif;
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.progress-doc img {
    width: 50px;
    height: 50px;
}

.progress-timeline {
    margin-top: 20px;
    font-size: 17px;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

/* === адаптив === */
@media (max-width: 1024px) {
    .progress-grid {
        grid-template-columns: 1fr 1fr;
    }

    .text-col {
        padding: 20px 0;
    }

    .brand-col {
        display: none;
    }
}

@media (max-width: 768px) {
    .progress-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .progress-timeline {
        font-size: 15px;
    }

    .text-col {
        width: 90%;
        margin: 0 auto;
    }

    .photo-col {
        height: 520px;
        width: 90%;
        margin: 0 auto;
    }
}
