/* 홈 진입 — 얼굴형별 (헤어순위 카드 blue 톤 계열) */
.face-shape-entry {
    max-width: 720px;
    margin: 0 auto 18px;
    padding: 0;
    box-sizing: border-box;
}

.face-shape-entry__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 14px 16px 14px 18px;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f9ff 0%, #eff6ff 55%, #dbeafe 100%);
    color: #1e3a8a;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(29, 78, 216, 0.1);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.face-shape-entry__btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    border-radius: 14px 0 0 14px;
}

.face-shape-entry__btn:hover,
.face-shape-entry__btn:focus-visible {
    transform: translateY(-1px);
    border-color: #93c5fd;
    box-shadow: 0 6px 18px rgba(29, 78, 216, 0.16);
}

.face-shape-entry__icon {
    position: relative;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #dbeafe;
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.25);
}

.face-shape-entry__icon::after {
    content: '';
    position: absolute;
    inset: 7px 9px;
    border-radius: 999px;
    background: #2563eb;
    opacity: 0.4;
}

.face-shape-entry__body {
    display: flex;
    flex: 1;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.face-shape-entry__text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #1e3a8a;
    letter-spacing: -0.02em;
}

.face-shape-entry__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.face-shape-entry__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.face-shape-entry__click {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #60a5fa;
    background: #fff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    box-shadow: 0 1px 4px rgba(29, 78, 216, 0.12);
}

.face-shape-entry__mobile-img {
    display: none;
    width: 100%;
    height: auto;
}

@media (max-width: 500px) {
    .face-shape-entry__btn {
        display: block;
        min-height: 0;
        padding: 0;
        gap: 0;
        border: none;
        background: none;
        box-shadow: none;
    }

    .face-shape-entry__btn::before {
        display: none;
    }

    .face-shape-entry__btn:hover,
    .face-shape-entry__btn:focus-visible {
        transform: none;
        border-color: transparent;
        box-shadow: none;
    }

    .face-shape-entry__icon,
    .face-shape-entry__body,
    .face-shape-entry__action {
        display: none !important;
    }

    .face-shape-entry__mobile-img {
        display: block;
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(29, 78, 216, 0.1);
    }
}

@media (max-width: 520px) {
    .face-shape-entry__btn {
        flex-wrap: wrap;
        /* padding: 14px 14px 14px 16px; */
        gap: 10px;
    }

    .face-shape-entry__body {
        flex: 1 1 calc(100% - 46px);
    }

    .face-shape-entry__action {
        margin-left: auto;
    }

    .face-shape-entry__text {
        font-size: 15px;
    }
}
