/* ===== 타로점 페이지 ===== */

.tarot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* ===== 페이지 타이틀 ===== */
.tarot-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.tarot-heading {
    font-family: 'MaruBuri', serif;
    font-size: 40px;
    font-weight: 600;
    color: #1a2d1c;
    line-height: 1;
}

.tarot-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #1a2d1c;
    line-height: 1;
}

/* ===== 카드 세트 선택 ===== */
.taro-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.taro-card {
    width: 300px;
    background-color: #2d432e;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.taro-card:active {
    transform: scale(0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.taro-card-img {
    width: 225px;
    height: 256px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.taro-card-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.taro-card-name {
    font-family: 'MaruBuri', serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.taro-card-line {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #ca9e7a;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .tarot-content {
        gap: 40px;
    }

    .tarot-heading {
        font-size: 32px;
    }

    .taro-cards {
        gap: 24px;
        width: 100%;
    }

    .taro-card {
        flex: 1;
        min-width: 0;
        width: auto;
        gap: 28px;
    }

    .taro-card-img {
        width: 100%;
        height: auto;
        aspect-ratio: 225 / 256;
    }
}

@media (max-width: 480px) {
    .tarot-content {
        gap: 16px;
    }

    .tarot-title {
        gap: 6px;
    }

    .tarot-heading {
        font-size: 22px;
    }

    .tarot-subtitle {
        font-size: 13px;
    }

    /* 카드 영역이 남은 공간을 채움 */
    .taro-cards {
        flex: 1;
        flex-direction: row;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .taro-card {
        flex: 1;
        min-width: 0;
        width: auto;
        max-width: none;
        padding: 16px 10px;
        gap: 16px;
    }

    /* 이미지가 카드 높이 채움 */
    .taro-card-img {
        flex: 1;
        width: 100%;
        height: 0;
        min-height: 120px;
        object-fit: contain;
    }

    .taro-card-name {
        font-size: 18px;
    }

    .taro-card-label {
        gap: 12px;
        flex-shrink: 0;
    }
}
