/* ===================================================
   main.css - 메인화면 스타일
   시운전 Check Man | 한화오션
=================================================== */

.kiosk {
    justify-content: space-between;
}

/* ===== Card Grid ===== */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 36px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    padding: 80px 0;
}

/* ===== Menu Card ===== */
.menu-card {
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--shadow-card);
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    cursor: pointer;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    border: none;
    text-align: left;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.menu-card:active {
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: scale(0.99);
}

/* ===== Card Icon ===== */
.card-icon {
    width: 86px;
    height: 86px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 43px;
    height: 43px;
    fill: var(--white);
}

.card-icon.boarding {
    background: var(--navy);
}

.card-icon.cargo {
    background: var(--accent);
}

.card-icon.tugboat {
    background: var(--green);
}

.card-icon.safety {
    background: #1F66A2;
}

/* ===== Card Body ===== */
.card-body {
    flex: 1;
    min-width: 0;
}

.card-body .card-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-body .card-desc {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Card Arrow ===== */
.card-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-arrow svg {
    width: 20px;
    height: 20px;
    fill: white;
}