.iblock-text {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #334155;
    line-height: 1.7;
    padding: 80px 0;
}

.iblock-text__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.iblock-text__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.iblock-text-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 32px;
    transition: box-shadow 0.3s ease;
}

.iblock-text-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.iblock-text-item__title {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1e293b;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    position: relative;
}

.iblock-text-item__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #c83030;
    border-radius: 2px;
}

.iblock-text-item__preview {
    margin-bottom: 20px;
}

.iblock-text-item__preview p {
    margin: 0 0 12px 0;
}

.iblock-text-item__preview p:last-child {
    margin-bottom: 0;
}

.iblock-text-item__detail {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.iblock-text-item__detail p {
    margin: 0 0 12px 0;
}

.iblock-text-item__detail p:last-child {
    margin-bottom: 0;
}

/* Hero-стиль для одиночного элемента */
.iblock-text--single .iblock-text-item {
    background: #f5f5f5;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: none;
}

.iblock-text--single .iblock-text-item:hover {
    box-shadow: none;
}

.iblock-text--single .iblock-text-item__title {
    font-size: 28px;
}

@media (max-width: 992px) {
    .iblock-text {
        padding: 60px 0;
    }

    .iblock-text-item {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .iblock-text {
        padding: 40px 0;
    }

    .iblock-text__list {
        gap: 24px;
    }

    .iblock-text-item__title {
        font-size: 20px;
    }

    .iblock-text-item__preview {
        font-size: 1rem;
    }

    .iblock-text--single .iblock-text-item {
        padding: 35px 25px;
    }

    .iblock-text--single .iblock-text-item__title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .iblock-text-item {
        padding: 20px;
    }

    .iblock-text-item__title {
        font-size: 18px;
    }
}
