.biz-hero-banner {
    background: linear-gradient(135deg, #0b1736 0%, var(--point-color, #113290) 100%);
    border-radius: 1rem;
    padding: 3.125rem 3rem;
    color: #ffffff;
    margin-bottom: 3.125rem;
    box-shadow: 0 0.9375rem 2.1875rem rgba(17, 50, 144, 0.15);
}

.biz-hero-tag {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: block;
}

.biz-hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 1rem 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.biz-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 56.25rem;
    line-height: 1.75;
    word-break: keep-all;
}

/* Business Showcase Rows (about_1.php 폰트 단위 rem 매칭) */
.biz-showcase-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin-bottom: 3.75rem;
}

.biz-item-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 2.75rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* 짝수 번째 지그재그 반전 배치 */
.biz-item-row.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.biz-item-row.reverse .biz-item-textcol {
    order: 2;
}

.biz-item-row.reverse .biz-item-imgcol {
    order: 1;
}

.biz-item-row:hover {
    transform: translateY(-0.375rem);
    border-color: var(--point-color, #113290);
    box-shadow: 0 1.25rem 2.5rem rgba(17, 50, 144, 0.09);
}

.biz-item-textcol {
    display: flex;
    flex-direction: column;
}

.biz-item-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.biz-item-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: rgba(17, 50, 144, 0.06);
    color: var(--point-color, #113290);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.biz-item-row:hover .biz-item-icon {
    background: var(--point-color, #113290);
    color: #ffffff;
}

.biz-item-num {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--point-color, #113290);
    letter-spacing: 1.5px;
}

.biz-item-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111111;
    margin: 0 0 1rem 0;
    line-height: 1.35;
    letter-spacing: -0.5px;
}

.biz-item-divider {
    width: 2.5rem;
    height: 0.1875rem;
    background: var(--point-color, #113290);
    margin-bottom: 1.25rem;
    border-radius: 0.125rem;
    transition: width 0.3s ease;
}

.biz-item-row:hover .biz-item-divider {
    width: 3.75rem;
}

.biz-item-desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--mw-subp-text-sub, #334155);
    margin: 0;
    word-break: keep-all;
    font-weight: 500;
}

/* Image Frame */
.biz-item-imgcol {
    width: 100%;
}

.biz-img-frame {
    position: relative;
    width: 100%;
    height: 18.75rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid #f0f0f0;
}

.biz-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-item-row:hover .biz-img-frame img {
    transform: scale(1.06);
}

/* Responsiveness (about_1.php rem 미디어쿼리 대응) */
@media (max-width: 992px) {
    .mw-subp-section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .biz-hero-banner {
        padding: 2.25rem 1.75rem;
        margin-bottom: 2.25rem;
    }

    .biz-hero-title {
        font-size: 1.5rem;
    }

    .biz-hero-desc {
        font-size: 1rem;
    }

    .biz-item-row,
    .biz-item-row.reverse {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2rem 1.75rem;
    }

    .biz-item-row.reverse .biz-item-textcol {
        order: 1;
    }

    .biz-item-row.reverse .biz-item-imgcol {
        order: 2;
    }

    .biz-img-frame {
        height: 15rem;
    }

    .biz-item-title {
        font-size: 1.375rem;
    }

    .biz-item-desc {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .biz-item-row {
        padding: 1.5rem 1.25rem;
    }

    .biz-img-frame {
        height: 12.5rem;
    }

    .biz-item-title {
        font-size: 1.25rem;
    }

    .biz-item-desc {
        font-size: 0.9375rem;
    }
}