@charset "utf-8";

/*성과창출플랫폼 PXR이 필요한 기업*/

.main-sec-07 {
    padding: var(--space-80-fivexl) 0;
    text-align: center;
}

.company-type-section {
    background: #f5fafd;
    text-align: center;
    padding: 52px 0 44px 0;
    font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
}

.company-type-section h2 {
    font-size: 2.4rem;
    color: #232671;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.company-type-desc {
    font-size: 1.18rem;
    color: #1a2b49;
    font-weight: 500;
    margin-bottom: 38px;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.company-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0;
}

.company-type-box {
    width: 221px;
    height: 253px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
}

.company-type-header {
    background: linear-gradient(90deg, #0ccaf0 0%, #ffe158 100%);
    text-align: center;
    height: 65px;
    border-radius: 5px 5px 0 0;
    padding: 0;
    font-size: 27px;
    letter-spacing: 0px;
    line-height: 75px;
    color: #231f20;
    font-weight: bold;
}

.small-font {
    font-size: 24px !important;
}

.company-type-body {
    flex: 1 1 0;
    min-height: 0;
    height: 188px;    /* 253 - 65 */
    background: #fff;
    font-weight: 500;
    text-align: center;
    padding: 20px 14px 20px 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 34px;
    color: #231f20;
}

/* 하단 라인: 헤더 그라데이션과 동일 */
.company-type-body:before {
    content: "";
    position: absolute;
    left: 0; bottom: 0; width: 100%; height: 1.5px;
    background: linear-gradient(90deg, #0ccaf0 0%, #ffe158 100%);
    border-radius: 0 0 5px 5px;
    z-index: 2;
}
.company-type-body:after {
    /* 좌측 라인: 헤더 시작색 (단색) */
    content: "";
    position: absolute;
    top: 0; left: 0; width: 1.5px; height: 100%;
    background: #0ccaf0;
    border-radius: 0 0 0 5px;
    z-index: 2;
}
.company-type-body .right-border {
    /* 우측 라인: 헤더 끝색 (단색) */
    position: absolute;
    top: 0; right: 0; width: 1.5px; height: 100%;
    background: #ffe158;
    border-radius: 0 0 5px 0;
    z-index: 2;
    pointer-events: none;
}
