.claimcheck-slider-wrapper {
    background: #e2e5ec;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* КАТЕГОРИИ */
.claimcheck-slider-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 0;
    margin-top: 32px;
    margin-bottom: 32px;
    line-height: 16px; /* уменьшено в два раза */
    flex-direction: row;
}
.claimcheck-slider-category {
    font-size: 17px;
    color: #23406a;
    padding: 8px 22px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: none;
    margin-bottom: 0;
}
.claimcheck-slider-category.active {
    border: 1px solid #1e3250;
    background: #fff;
}

/* СЛАЙДЕР */
.claimcheck-slider-posts {
    width: 100%;
    display: flex;
    justify-content: center;
}
.claimcheck-slider-track {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px; /* увеличено! чтобы не резать третью запись */
    margin: 0 auto;
}
.claimcheck-slider-arrow {
    width: 56px;
    height: 56px;
    background: #4c4c4c;
    border: 2px solid #f3f5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin: 0 12px;
    border-radius: 8px;
    outline: none;
}
.claimcheck-slider-arrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: solid #f3f5fa;
    border-width: 0 4px 4px 0;
    padding: 3px;
    margin: auto;
    transform: rotate(-45deg);
}
.claimcheck-slider-arrow-left::before {
    transform: rotate(135deg);
}
.claimcheck-slider-arrow-right::before {
    transform: rotate(-45deg);
}
.claimcheck-slider-items {
    display: flex;
    gap: 32px;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
}
.claimcheck-slider-item {
    background: #e2e5ec;
    min-width: 350px;
    max-width: 420px;
    box-sizing: border-box;
    padding: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.claimcheck-slider-thumb-crop img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 7px;
}
.claimcheck-slider-title {
    font-size: 19px;
    font-weight: bold;
    color: #111;
    margin-top: 28px;
    margin-bottom: 0;
}
.claimcheck-slider-excerpt {
    font-size: 13px;
    color: #222;
    margin-top: 13px;
    margin-bottom: 0;
    line-height: 13px;
    max-height: none; /* убрано ограничение, чтобы не резать строки */
    overflow: visible;
    display: block;
    word-break: break-word;
}
.claimcheck-slider-readmore {
    margin-top: 16px;
    background: #fff;
    color: #222;
    border: none;
    font-size: 15px;
    padding: 12px 28px;
    cursor: pointer;
    border-radius: 4px;
}

/* МОДАЛЬНОЕ ОКНО */
.claimcheck-slider-modal {
    position: fixed;
    left: 0; top: 0;
    right: 0; bottom: 0;
    background: rgba(34, 40, 60, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.claimcheck-slider-modal-content {
    background: #fff;
    width: 520px;
    max-width: 90vw;
    padding: 60px 20px 45px 20px;
    position: relative;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(34,40,60,0.13);
}
.claimcheck-slider-modal-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 38px;
    color: #23406a;
    cursor: pointer;
}
.claimcheck-slider-modal-text {
    font-size: 18px;
    color: #23406a;
    margin-bottom: 38px;
}
.claimcheck-slider-modal-btn {
    display: inline-block;
    background: #23406a;
    color: #fff;
    font-size: 22px;
    padding: 18px 64px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s;
}
.claimcheck-slider-modal-btn:hover {
    background: #1e3250;
}

/* МОБИЛЬНЫЙ ВИД */
@media (max-width: 900px) {
    .claimcheck-slider-categories {
        margin-top: 16px;
        margin-bottom: 16px;
        gap: 16px 0;
        line-height: 8px;
    }
    .claimcheck-slider-items {
        gap: 8px;
    }
    .claimcheck-slider-item {
        min-width: 300px;
        max-width: 100vw;
    }
    .claimcheck-slider-modal-content {
        width: 90vw;
    }
}

@media (max-width: 600px) {
    .claimcheck-slider-categories {
        justify-content: flex-start;
        gap: 9px 0;
        margin-top: 7px;
        margin-bottom: 7px;
        line-height: 5px;
    }
    .claimcheck-slider-category {
        font-size: 16px;
        padding: 5px 8px;
    }
    .claimcheck-slider-track {
        max-width: 99vw;
    }
    .claimcheck-slider-items {
        gap: 0;
        padding-left: 5vw;
    }
    .claimcheck-slider-item {
        min-width: 85vw;
        max-width: 85vw;
        margin-right: -15vw;
        background: #e2e5ec;
        padding-bottom: 18px;
    }
    .claimcheck-slider-thumb-crop {
        display: none;
    }
    .claimcheck-slider-thumb-mobile {
        width: 100%;
        height: 60px;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        border-radius: 7px;
        margin-bottom: 7px;
        clip-path: inset(0 0 30px 0);
        display: block;
    }
    .claimcheck-slider-title {
        font-size: 17px;
        margin-top: 7px;
        margin-bottom: 0;
    }
    .claimcheck-slider-excerpt {
        font-size: 12px;
        line-height: 7px;
        margin-top: 7px;
        margin-bottom: 0;
        max-height: 6em;
    }
    .claimcheck-slider-readmore {
        margin-top: 7px;
        font-size: 13px;
        padding: 8px 18px;
    }
    .claimcheck-slider-arrow {
        display: none !important;
    }
}