/* Кратко о важном */
.short_about_block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: 'MuseoSansCyrl-100';
    font-weight: bold;
    background: #ffffff;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.top-line {
    position: absolute;
    top: 40px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: pre;
}

.specs-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 30px 35px;
    box-sizing: border-box;
    user-select: none;
}

.specs-container span {
    background-color: #38b6fe;
    color: white;
    position: relative;
    border-radius: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
}

.spec-group {
    display: flex;
    flex-direction: column;
}

.left-spec {
    text-align: left;
    /*margin-left: 15vw;*/
    width: 20%;
}

.left-spec-selected {
    text-align: left;
    /*margin-left: 15vw;*/
    width: 20%;
    background-color: #38b6fe;
    border-radius: 10px;
    padding: 5px;
    color: white;
}

.right-spec {
    text-align: right;
    margin-right: 15vw;
}

.spec-line {
    font-size: 17px;
    font-weight: 500;
    color: #808080;
    letter-spacing: 0.5px;
    text-align: center;
}

.spec-line-selected {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.spec-line img {
    width: 10px;
}

.spec-line-bold {
    font-size: 20px; 
    font-weight: 600; 
    letter-spacing: 0.5px;
    text-align: center;
}

@media (max-width: 1350px) {
    .specs-container {
        padding: 30px 70px;
    }
    
    .left-spec {
        margin-left: 10vw;
    }
    
    .right-spec {
        margin-right: 10vw;
    }
    
    .spec-line-bold {
        font-size: 50px;
    }
}

@media (max-width: 1024px) {
    
    .left-spec {
        margin-left: 7vw;
    }
    
    .right-spec {
        margin-right: 7vw;
    }
    
    .spec-line-bold {
        font-size: 40px;
    }
    
    .spec-line {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .short_about_block {
        height: auto;
        padding: 30px 0;
    }
    
    .top-line {
        position: static;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
        padding: 0 30px;
        white-space: normal;
    }
    
    .specs-container {
        flex-direction: column;
        align-items: center;
        padding: 0 30px;
        gap: 40px;
    }
    
    .spec-group {
        width: 100%;
        max-width: 400px;
    }
    
    .left-spec,
    .right-spec {
        margin: 0;
        text-align: center;
    }
    
    .spec-line-bold {
        font-size: 30px;
    }
    
    .spec-line {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .specs-container h1 {
        text-align: center;
    }
    
    .top-line {
        position: static;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
        padding: 0 20px;
        white-space: normal;
    }
    
    .specs-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 40px;
    }
    
    .spec-group {
        width: 100%;
        max-width: 300px;
    }
    
    .left-spec,
    .right-spec {
        margin: 0;
        text-align: center;
    }

    .spec-line-bold {
        font-size: 25px;
    }

    
    .spec-line {
        font-size: 15px;
        line-height: 1;
    }
    
    /* Специальные стили для больших цифр */
    .spec-line:first-child {
        font-size: 25px;
        font-weight: 600;
        color: #000;
        margin: 10px 0;
    }
    
    /* Стиль для текста "До" перед градусами */
    .spec-line:first-child span {
        font-size: 15px;
        font-weight: 500;
        color: #808080;
    }
    
    /* Стили для стрелок */
    .spec-line img {
        max-width: 30px;
        margin: 10px auto;
    }
}
