/* Section Title Block Component */
.section-title-block {
    display: block;
}

.section-title-block__microtitle-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-title-block__square {
    width: 10px;
    height: 10px;
    background: #353331;
    border-radius: 2px;
    margin-right: 5px;
    flex-shrink: 0;
}

.section-title-block__microtitle {
    font-family: 'Commissioner', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -5%;
    color: #353331;
    text-transform: uppercase;
    text-align: left;
}

.section-title-block__title {
    font-family: 'Vetrino', serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(32px, calc(32px + (60 - 32) * ((100vw - 575px) / (1920 - 575))), 60px);
    line-height: 90%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: #353331;
    leading-trim: CAP_HEIGHT;
    text-align: left;
    margin: 0;
}

/* Адаптив */
@media (max-width: 991px) {
    .section-title-block__title {
        font-size: clamp(24px, calc(24px + (32 - 24) * ((100vw - 575px) / (991 - 575))), 32px);
    }
}

@media (max-width: 575px) {
    .section-title-block__microtitle-row {
        margin-bottom: 15px;
    }
    
    .section-title-block__title {
        font-size: 32px;
    }
} 