.ilb-section {
    margin: 48px 0;
    padding: 40px 0;
    position: relative;
}

.ilb-section__title {
    width: 90%;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid #5dade2;
    border-radius: 6px;
    padding: 20px 20px;
    margin: 0 auto 24px;
    box-sizing: border-box;
}

.ilb-section__title p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit;
    line-height: 1.2;
}

.ilb-slider-wrap {
    width: 90%;
    margin: 0 auto;
}

.ilb-slider-shell {
    position: relative;
}


.ilb-slider {
    overflow: hidden;
    padding: 0 0 36px;
}


.ilb-section .swiper-wrapper {
    align-items: stretch;
}

.ilb-section .swiper-slide {
    background: transparent !important;
    text-align: left;
    height: auto !important;
    white-space: normal !important;
    box-sizing: border-box;
}


.ilb-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    height: 128px;
    min-height: 96px;

    padding: 16px 20px;

    border: 1px solid rgba(0, 188, 255, 0.5) !important;
    border-radius: 6px;

    background: rgba(0, 12, 18, 0.2) !important;
    background-color: rgba(0, 12, 18, 0.2) !important;

    text-decoration: none;
    color: inherit;
    box-sizing: border-box;

    overflow: hidden;

    transition:
            border-color .25s ease,
            background .25s ease,
            box-shadow .25s ease;
}

.ilb-card:hover {
    border-color: rgba(0, 188, 255, 0.95) !important;
    background: rgba(0, 188, 255, 0.08) !important;
    box-shadow: 0 0 18px rgba(0, 188, 255, 0.16);
    text-decoration: none;
    color: inherit;
}


.ilb-card__anchor {
    margin: 0 0 8px;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;

    color: #ffffff;

    white-space: normal;
    word-break: break-word;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.ilb-card__desc {
    margin: 0;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: rgb(125, 201, 255);

    white-space: normal;
    word-break: break-word;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ilb-card__arrow {
    display: none;
}


.ilb-btn {
    position: absolute;
    top: 48px;
    z-index: 20;

    width: 26px;
    height: 26px;

    padding: 0;
    border: 1px solid #00bfff;
    border-radius: 50%;

    background: rgba(0, 20, 28, 0.72);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
            background .25s ease,
            border-color .25s ease,
            opacity .25s ease,
            box-shadow .25s ease;
}

.ilb-btn:hover {
    background: rgba(0, 188, 255, 0.2);
    border-color: rgba(95, 215, 255, 1);
    box-shadow: 0 0 14px rgba(0, 188, 255, 0.38);
}

.ilb-btn-prev {
    left: -31px;
}

.ilb-btn-next {
    right: -31px;
}

.ilb-btn::before {
    content: '';
    display: block;

    width: 8px;
    height: 8px;

    border-top: 2px solid #5fd7ff;
    border-right: 2px solid #5fd7ff;

    box-sizing: border-box;
}

.ilb-btn-prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.ilb-btn-next::before {
    transform: rotate(45deg);
    margin-right: 3px;
}

.ilb-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

/* Убираем стандартные стрелки Swiper */
.ilb-section .swiper-button-prev::after,
.ilb-section .swiper-button-next::after {
    display: none;
    content: none;
}


.ilb-pagination {
    bottom: 4px !important;
}

.ilb-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px !important;

    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
}

.ilb-pagination .swiper-pagination-bullet-active {
    background: #5dade2;
}


@media (max-width: 768px) {
    .ilb-section__title,
    .ilb-slider-wrap {
        width: calc(100% - 32px);
    }

    .ilb-section__title {
        font-size: 14px;
        padding: 11px 16px;
    }

    .ilb-card {
        height: 100px;
        min-height: 100px;
        padding: 15px 17px;
    }

    .ilb-card__anchor {
        font-size: 14px;
    }

    .ilb-card__desc {
        font-size: 12px;
    }

    .ilb-btn {
        width: 30px;
        height: 30px;
        top: 35px;
    }

    .ilb-btn-prev {
        left: -13px;
    }

    .ilb-btn-next {
        right: -13px;
    }
}

@media (max-width: 480px) {
    .ilb-section {
        padding: 24px 0;
    }

    .ilb-slider-wrap {
        width: calc(100% - 24px);
    }

    .ilb-section__title {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .ilb-card {
        height: 108px;
        min-height: 108px;
        padding: 15px 16px;
    }

    .ilb-card__anchor {
        font-size: 14px;
        line-height: 1.35;
    }

    .ilb-card__desc {
        font-size: 12px;
        line-height: 1.45;
    }

    .ilb-btn {
        width: 28px;
        height: 28px;
        top: 40px;
    }

    .ilb-btn-prev {
        left: -9px;
    }

    .ilb-btn-next {
        right: -9px;
    }
}