.bca-info-section,
.bca-info-section * {
    box-sizing: border-box;
}

.bca-info-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    z-index: 2;
}

.bca-info-inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(12, 84, 60, 0.22);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 60, 45, 0.07);
    backdrop-filter: blur(6px);
}

.bca-info-box {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 104px;
    padding: 22px 24px;
    position: relative;
}

.bca-info-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: rgba(12, 84, 60, 0.20);
}

.bca-info-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 121, 111, 0.20);
}

.bca-info-icon svg,
.bca-info-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    display: block;
    fill: currentColor;
}

.bca-info-content {
    min-width: 0;
}

.bca-info-label {
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.bca-info-text {
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

@media (max-width: 1024px) {
    .bca-info-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bca-info-box:nth-child(2)::after {
        display: none;
    }

    .bca-info-box:nth-child(1),
    .bca-info-box:nth-child(2) {
        border-bottom: 1px solid rgba(12, 84, 60, 0.16);
    }
}

@media (max-width: 640px) {
    .bca-info-inner {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .bca-info-box {
        min-height: auto;
        padding: 18px 18px;
    }

    .bca-info-box:not(:last-child)::after {
        display: none;
    }

    .bca-info-box:not(:last-child) {
        border-bottom: 1px solid rgba(12, 84, 60, 0.16);
    }

    .bca-info-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .bca-info-label {
        font-size: 16px;
    }

    .bca-info-text {
        font-size: 15px;
    }
}
