.section-11_Blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5px;
    scroll-margin-top: min(110px, 20vw);
}

.caption-11_Blog {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #00b909;
}

.title-11_Blog {
    align-self: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #383838;
    max-width: 600px;
    line-height: 1.1;
    font-size: clamp(20px, calc(10px + 2vw), 25px);
}

.subtitle-11_Blog {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, calc(5px + 1vw), 14px);
    font-weight: 400;
    letter-spacing: 0.2px;
    color: rgba(150, 150, 150, 0.87);
    line-height: 1.3;
}

.container-news-11_Blog {
    margin: 13px auto 0;
    display: flex;
    gap: min(20px, 4vw);
    overflow-x: scroll;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    max-width: 100%;
    overscroll-behavior-x: contain;
    touch-action: pan-y pan-x;
    -ms-touch-action: pan-y pan-x;
}

.container-news-11_Blog::-webkit-scrollbar {
    display: none;
}

.item-11_Blog {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.image-11_Blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 2 / 1;
    border-radius: 20px;
}

.item-info-11_Blog {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-top: 5px;
}

.tag-data-11_Blog {
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-11_Blog {
    display: flex;
    align-items: center;
}

.info-11_Blog {
    font-size: 12px;
    color: rgba(154, 154, 154, 0.7);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    line-height: 2;
}

.info-11_Blog span {
    background-color: #565656;
    padding: 2px 6px 3px;
    color: #ffffff;
    border-radius: 4px;
}

.item-title-11_Blog {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, calc(10px + 1vw), 16px);
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #565656;
}

.item-subtitle-11_Blog {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: #969696;
    line-height: 1.3;
}

.modal-11_Blog {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-11_Blog.show {
    display: flex;
}

.modal-content-11_Blog {
    background: #fff;
    border-radius: 12px;
    max-width: min(85%, 550px);
    max-height: 90%;
    overflow-y: auto;
    padding: 25px 20px;
    position: relative;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.modal-close-11_Blog {
    position: absolute;
    right: 15px;
    bottom: 12px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.1s;
}

.modal-close-11_Blog:hover {
    background-color: #dfdfdf;
}

.modal-image-11_Blog img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 14px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 2 / 1;
    max-height: 220px;
}

.modal-date-11_Blog {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.modal-title-11_Blog {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.modal-text-11_Blog {
    font-size: 14px;
    color: #505050;
    line-height: 1.5;
}

.slider-container-11_Blog {
    width: 85%;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    padding: 0 5px; /* Важно, чтобы ползунок не уходил за края */
}

.slider-thumb-11_Blog {
    height: 100%;
    width: 25%; /* Начальная ширина, будет рассчитана JS */
    background-color: #007bff;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: grab; /* Курсор для перетаскивания */
    transition: background-color 0.2s ease;
}

.slider-thumb-11_Blog:active {
    cursor: grabbing;
    background-color: #0056b3;
}