﻿/* ===============================
   JOURNEY CARD BUTTON
=============================== */

.journey-card {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .journey-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(0,0,0,0.55);
    }
    /* 전투 카드 공통 */
    .journey-card.battle {
        background-image: linear-gradient( to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15) );
    }

    .journey-card.battle.battle-competitive {
        background-image: linear-gradient( to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15) ), url("/images/base/battle_rank.png");
    }

    .journey-card.battle.battle-normal {
        background-image: linear-gradient( to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15) ), url("/images/base/battle_normal.png");
    }

    /* 레이드 카드 */
    .journey-card.raid {
        background-image: linear-gradient( to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15) ), url("/images/base/raid-bg.png");
    }


.journey-card {
    position: relative;
}

.journey-card-corner-meta {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
