/* Company greeting page (2026-08-19) */

.sub-hero:has(+ .greeting-section) p {
    font-weight: 400;
}

.greeting-section {    background:
        radial-gradient(circle at 8% 8%, rgba(8, 119, 242, .08), transparent 28%),
        radial-gradient(circle at 92% 15%, rgba(0, 200, 210, .08), transparent 26%),
        linear-gradient(180deg, #f6faff 0%, #fff 46%, #f5f9fd 100%);
    padding: 88px 0 108px;
}

.company-summary-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 42px 0 8px;
}

.company-summary-divider::before,
.company-summary-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(
        90deg,
        rgba(10, 50, 177, 0),
        rgba(10, 50, 177, .42),
        rgba(8, 119, 242, .72)
    );
}

.company-summary-divider::after {
    background: linear-gradient(
        90deg,
        rgba(8, 119, 242, .72),
        rgba(10, 50, 177, .42),
        rgba(10, 50, 177, 0)
    );
}

.company-summary-divider span {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #0a32b1;
    box-shadow:
        0 0 0 5px rgba(10, 50, 177, .08),
        0 0 18px rgba(8, 119, 242, .28);
}

.vm-core-stage {
    position: relative;
    margin-top: 6px;
    padding: 34px 28px;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(31, 52, 88, .06);
    isolation: isolate;
}

.vm-core-triangle {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 12px;
    height: 330px;
    z-index: 0;
    opacity: .94;
    pointer-events: none;
}

.vm-core-triangle svg {
    display: block;
    width: 100%;
    height: 100%;
}

.vm-core-triangle path {
    fill: #4f93d8;
}

.vm-stack {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 16px;
    max-width: 1020px;
    margin: 0 auto 26px;
}

.vm-row {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.vm-label-box,
.vm-text-box {
    min-height: 112px;
    border-radius: 22px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 24px rgba(31, 52, 88, .10);
}

.vm-label-box {
    font-size: 25px;
    font-weight: 500;
}

.vm-text-box {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
    word-break: keep-all;
}
.vm-row.vision .vm-label-box,
.vm-row.vision .vm-text-box {
    background: #4f93d8;
}

.vm-row.mission .vm-label-box,
.vm-row.mission .vm-text-box {
    background: #9fc4e9;
}

.vm-core-values {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vm-core-card {
    min-height: 330px;
    overflow: hidden;
    background: #dfe5ec;
    border: 1px solid #d2dbe5;
    border-radius: 24px;
    box-shadow: 0 10px 26px rgba(31, 52, 88, .05);
}

.vm-core-card-head {
    min-height: 112px;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #d8e7f6;
    border-bottom: 1px solid #cdd8e4;
}

.vm-core-card-head h3 {
    margin: 0;
    color: #111;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.vm-core-card-head small {
    display: block;
    margin-top: 3px;
    color: #111;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}
.vm-core-card-body {
    padding: 18px 18px 22px;
}

.vm-core-card-body ul {
    margin: 0;
    padding-left: 20px;
    color: #111;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}
.vm-core-card-body li {
    margin: 4px 0;
    font-weight: 400;
}

.greeting-section .summary-panel p,
.greeting-section .business-card li,
.greeting-section .competency-card h3 > span + span {
    font-weight: 400;
}

.greeting-section .competency-grid.competency-grid-3 {    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.greeting-section .competency-grid.competency-grid-3 .competency-card:nth-child(2) h3 {
    white-space: normal; /*nowrap*/
    font-size: 20px;
    letter-spacing: -.045em;
}

@media (max-width: 1100px) {
    .greeting-section .competency-grid.competency-grid-3 .competency-card:nth-child(2) h3 {
        white-space: normal;
        font-size: 22px;
    }
}

@media (max-width: 980px) {
    .greeting-section .competency-grid.competency-grid-3,
    .greeting-section .vm-core-values {
        grid-template-columns: 1fr;
    }

    .vm-core-triangle {
        left: -2%;
        right: -2%;
        height: 300px;
        opacity: .86;
    }

    .vm-row {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .vm-label-box {
        font-size: 21px;
    }

    .vm-text-box {
        font-size: 18px;
    }

    .vm-core-card {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .greeting-section {
        padding: 58px 0 76px;
    }

    .company-summary-divider {
        margin: 30px 0 4px;
        gap: 10px;
    }

    .company-summary-divider span {
        width: 8px;
        height: 8px;
        flex-basis: 8px;
    }

    .vm-core-stage {
        padding: 22px 14px 24px;
        border-radius: 22px;
    }

    .vm-core-triangle {
        top: 4px;
        left: -20%;
        right: -20%;
        height: 290px;
        opacity: .78;
    }

    .vm-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .vm-label-box,
    .vm-text-box {
        min-height: auto;
        padding: 17px 16px;
        border-radius: 18px;
    }

    .vm-label-box {
        font-size: 20px;
    }

    .vm-text-box {
        font-size: 16px;
        line-height: 1.55;
    }

    .vm-core-values {
        gap: 12px;
    }

    .vm-core-card-head {
        min-height: auto;
        padding: 17px 14px;
    }

    .vm-core-card-head h3 {
        font-size: 18px;
    }

    .vm-core-card-head small {
        font-size: 13px;
    }

    .vm-core-card-body ul {
        font-size: 14px;
    }
}
