
.section-beraterportal .bkui_section{
    background-color: #fff !important;
}

.bkui_wrapper {
  background: #fff !important;
    
}



 .bkui_info_box {
     width: 100%;
     box-sizing: border-box;
     display: flex;
     align-items: flex-start;
     gap: 28px;
     padding: 0 28px 34px;
     margin: 0 0 28px;
     border: 1px solid #6ea4ff;
     border-radius: 10px;
     background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
     box-shadow: 0 8px 22px rgba(35, 103, 220, 0.12);
     color: #1f2937;
 }

.bkui_info_icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f6ff2;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    font-family: Georgia, serif;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(31, 111, 242, 0.25);
}

.bkui_info_content {
    flex: 1;
    min-width: 0;
}

.bkui_info_title {
    margin: 0 0 8px;
    color: #1464e8;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.bkui_info_text {
    margin: 0;
    color: #2f3540;
    font-size: 16px;
    line-height: 1.5;
}

.bkui_info_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 34px;
}

.bkui_info_stat {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 28px;
    color: #202733;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.3;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bkui_info_stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: #d6dce6;
}

.bkui_info_stat:hover {
    color: #1464e8;
    transform: translateY(-1px);
}

.bkui_info_stat_icon,
.bkui_info_external_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1464e8;
}

.bkui_info_stat_icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bkui_info_external_icon svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bkui_info_stat_label {
    font-weight: 400;
    white-space: nowrap;
}

.bkui_info_stat_value {
    color: #1464e8;
    font-weight: 700;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 900px) {
    .bkui_info_box {
        padding: 24px;
        gap: 20px;
    }

    .bkui_info_stats {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .bkui_info_stat {
        justify-content: flex-start;
        padding: 16px 0;
    }

    .bkui_info_stat:not(:last-child)::after {
        right: auto;
        left: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .bkui_info_box {
        flex-direction: column;
        padding: 22px 18px;
        border-radius: 8px;
    }

    .bkui_info_icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 25px;
    }

    .bkui_info_title {
        font-size: 21px;
    }

    .bkui_info_text {
        font-size: 15px;
    }

    .bkui_info_stat {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 15px;
    }

    .bkui_info_stat_icon svg {
        width: 26px;
        height: 26px;
    }
}
