/* bmti.css - BMTI 전용 스타일 (60문항 / 7점 리커트 / 5차원 / 차량 2대 추천) */

/* ==================== 공통 & 랜딩 ==================== */
.bmti-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 80vh;
}

.bmti-section {
    display: none;
}

.bmti-section.active {
    display: block;
}

/* 랜딩 */
.bmti-landing {
    text-align: center;
    padding: 60px 0 40px;
}

.bmti-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #1C69D4, #4A90E2, #7BB3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.bmti-landing-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.bmti-landing-desc {
    font-size: 16px;
    color: #8B95A1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.bmti-participant-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(28, 105, 212, 0.1);
    border: 1px solid rgba(28, 105, 212, 0.2);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: 14px;
    color: #8B95A1;
    margin-bottom: 32px;
}

.bmti-participant-count strong {
    color: #1C69D4;
}

.bmti-btn-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #1C69D4, #0653B6);
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bmtiPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(28, 105, 212, 0.4);
}

.bmti-btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(28, 105, 212, 0.5);
}

@keyframes bmtiPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(28, 105, 212, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(28, 105, 212, 0.6); }
}

.bmti-landing-info {
    margin-top: 24px;
    font-size: 13px;
    color: #6B7684;
}

/* ==================== 퀴즈 섹션 ==================== */
.bmti-quiz {
    padding: 24px 0;
}

/* 프로그레스바 */
.bmti-progress {
    margin-bottom: 32px;
}

.bmti-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.bmti-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #8B95A1;
}

.bmti-progress-number {
    font-family: 'Poppins', sans-serif;
    color: #1C69D4;
}

.bmti-progress-dimension {
    font-size: 13px;
    font-weight: 500;
    color: #4A90E2;
    background: rgba(28, 105, 212, 0.1);
    padding: 2px 10px;
    border-radius: 10px;
}

.bmti-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.bmti-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1C69D4, #4A90E2);
    border-radius: 3px;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(28, 105, 212, 0.5);
}

/* 질문 카드 */
.bmti-question-container {
    position: relative;
    overflow: hidden;
}

.bmti-question-card {
    animation: bmtiSlideIn 0.3s ease;
}

@keyframes bmtiSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bmti-question-number {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1C69D4;
    margin-bottom: 12px;
}

.bmti-question-text {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 40px;
    word-break: keep-all;
    text-align: center;
    min-height: 60px;
}

/* ==================== 7점 리커트 척도 ==================== */
.bmti-likert {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.bmti-likert-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 340px;
}

.bmti-likert-label {
    font-size: 13px;
    font-weight: 500;
    color: #8B95A1;
}

.bmti-likert-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bmti-likert-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

/* 강도별 크기 차등: 바깥쪽 크게, 안쪽 작게 */
.bmti-likert-dot[data-value="1"],
.bmti-likert-dot[data-value="7"] {
    width: 48px;
    height: 48px;
}

.bmti-likert-dot[data-value="2"],
.bmti-likert-dot[data-value="6"] {
    width: 42px;
    height: 42px;
}

.bmti-likert-dot[data-value="3"],
.bmti-likert-dot[data-value="5"] {
    width: 36px;
    height: 36px;
}

.bmti-likert-dot[data-value="4"] {
    width: 30px;
    height: 30px;
}

.bmti-likert-dot:hover {
    border-color: rgba(28, 105, 212, 0.5);
    background: rgba(28, 105, 212, 0.1);
    transform: scale(1.1);
}

.bmti-likert-dot.selected {
    border-color: #1C69D4;
    background: linear-gradient(135deg, #1C69D4, #4A90E2);
    box-shadow: 0 0 16px rgba(28, 105, 212, 0.5);
    transform: scale(1.15);
}

/* 다음 버튼 */
.bmti-next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1C69D4, #0653B6);
    color: #FFFFFF;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(28, 105, 212, 0.3);
}

.bmti-next-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 105, 212, 0.4);
}

.bmti-next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ==================== 차원 인터스티셜 ==================== */
.bmti-interstitial {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
    padding: 40px 20px;
    animation: bmtiFadeIn 0.5s ease;
}

@keyframes bmtiFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bmti-interstitial-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.bmti-interstitial-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.bmti-interstitial-desc {
    font-size: 15px;
    color: #8B95A1;
    line-height: 1.6;
    margin-bottom: 32px;
    white-space: pre-line;
}

.bmti-interstitial-progress {
    font-size: 13px;
    color: #4A90E2;
    font-weight: 500;
}

/* ==================== 로딩 섹션 ==================== */
.bmti-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 0;
}

.bmti-loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(28, 105, 212, 0.2);
    border-top-color: #1C69D4;
    border-radius: 50%;
    animation: bmtiSpin 1s linear infinite;
    margin-bottom: 32px;
}

@keyframes bmtiSpin {
    to { transform: rotate(360deg); }
}

.bmti-loading-text {
    font-size: 16px;
    color: #8B95A1;
    line-height: 2;
}

.bmti-loading-step {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.bmti-loading-step.active {
    opacity: 1;
    color: #1C69D4;
    font-weight: 600;
}

.bmti-loading-step.done {
    opacity: 0.7;
    color: #4A90E2;
}

/* ==================== 결과 섹션 ==================== */
.bmti-result {
    padding: 32px 0 40px;
}

/* 유형 배지 */
.bmti-result-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    background: linear-gradient(135deg, #1C69D4, #4A90E2);
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 3px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(28, 105, 212, 0.3);
}

.bmti-result-typename {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
    word-break: keep-all;
}

.bmti-result-tagline {
    font-size: 16px;
    color: #8B95A1;
    margin-bottom: 24px;
}

/* 설명 */
.bmti-result-description {
    font-size: 16px;
    color: #B0B8C1;
    line-height: 1.8;
    margin-bottom: 24px;
    word-break: keep-all;
}

/* 강점 뱃지 */
.bmti-strengths {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.bmti-strength-badge {
    padding: 6px 14px;
    background: rgba(28, 105, 212, 0.1);
    border: 1px solid rgba(28, 105, 212, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #4A90E2;
}

/* ==================== 차량 추천 카드 (2대) ==================== */
.bmti-car-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.bmti-car-card {
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Ultimate Dream 카드 - 골드 프리미엄 */
.bmti-car-card.dream {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(184, 134, 11, 0.04));
    border: 1.5px solid rgba(212, 175, 55, 0.3);
}

/* My Best Fit 카드 - 실버 클린 */
.bmti-car-card.smart {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.06), rgba(169, 169, 169, 0.03));
    border: 1.5px solid rgba(192, 192, 192, 0.2);
}

.bmti-car-card-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.bmti-car-card.dream .bmti-car-card-label {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
}

.bmti-car-card.smart .bmti-car-card-label {
    background: rgba(192, 192, 192, 0.12);
    color: #C0C0C0;
}

.bmti-car-card-image-wrap {
    margin: 0 -8px 16px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(28, 105, 212, 0.05), rgba(13, 13, 15, 0.3));
}

.bmti-car-card-image {
    width: 100%;
    height: auto;
    display: block;
}

.bmti-car-card-image-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.bmti-car-card-model {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.bmti-car-card-price {
    font-size: 14px;
    color: #8B95A1;
    margin-bottom: 4px;
}

.bmti-car-card-lease {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1C69D4;
    margin-bottom: 16px;
}

.bmti-car-card-lease span {
    font-size: 14px;
    font-weight: 400;
    color: #8B95A1;
}

.bmti-car-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
}

.bmti-car-card.dream .bmti-car-card-cta {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.bmti-car-card.smart .bmti-car-card-cta {
    background: linear-gradient(135deg, #1C69D4, #0653B6);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(28, 105, 212, 0.3);
}

.bmti-car-card-cta:hover {
    transform: translateY(-2px);
}

/* ==================== 차원 바 ==================== */
.bmti-dimensions {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
}

.bmti-dimensions-title {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.bmti-dimension-item {
    margin-bottom: 16px;
}

.bmti-dimension-item:last-child {
    margin-bottom: 0;
}

.bmti-dimension-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.bmti-dimension-label {
    font-size: 13px;
    color: #8B95A1;
}

.bmti-dimension-label.active {
    color: #1C69D4;
    font-weight: 600;
}

.bmti-dimension-pct {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.8;
}

.bmti-dimension-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.bmti-dimension-fill {
    height: 100%;
    background: linear-gradient(90deg, #1C69D4, #4A90E2);
    border-radius: 4px;
    transition: width 0.8s ease;
}

/* 통계 */
.bmti-stat {
    text-align: center;
    padding: 16px;
    background: rgba(28, 105, 212, 0.08);
    border-radius: 12px;
    margin-bottom: 28px;
}

.bmti-stat-text {
    font-size: 14px;
    color: #8B95A1;
}

.bmti-stat-text strong {
    color: #1C69D4;
    font-size: 18px;
}

/* 궁합/상극 */
.bmti-compat-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
}

.bmti-compat-title {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.bmti-compat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 8px;
}

.bmti-compat-item:last-child {
    margin-bottom: 0;
}

.bmti-compat-emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.bmti-compat-info {
    flex: 1;
}

.bmti-compat-code {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1C69D4;
}

.bmti-compat-name {
    font-size: 13px;
    color: #8B95A1;
}

/* 궁합 체커 */
.bmti-checker {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
}

.bmti-checker-title {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.bmti-checker-desc {
    font-size: 13px;
    color: #8B95A1;
    margin-bottom: 16px;
}

.bmti-checker-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.bmti-checker-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
}

.bmti-checker-input::placeholder {
    color: #4E5968;
    letter-spacing: 1px;
    font-weight: 400;
}

.bmti-checker-input:focus {
    border-color: #1C69D4;
}

.bmti-checker-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #1C69D4, #0653B6);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.bmti-checker-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 105, 212, 0.3);
}

/* 궁합 체커 - 유형 목록 */
.bmti-checker-toggle {
    background: none;
    border: none;
    color: #1C69D4;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    text-decoration: underline;
}

.bmti-checker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.bmti-checker-grid-btn {
    padding: 8px 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #B0B8C1;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.bmti-checker-grid-btn:hover {
    background: rgba(28, 105, 212, 0.15);
    border-color: rgba(28, 105, 212, 0.4);
    color: #FFFFFF;
}

/* 궁합 결과 */
.bmti-checker-result {
    background: rgba(28, 105, 212, 0.08);
    border: 1px solid rgba(28, 105, 212, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: none;
}

.bmti-checker-result.active {
    display: block;
}

.bmti-checker-result-emoji {
    font-size: 36px;
    margin-bottom: 8px;
}

.bmti-checker-result-label {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.bmti-checker-result-score {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.bmti-checker-result-star {
    font-size: 20px;
}

.bmti-checker-result-message {
    font-size: 14px;
    color: #B0B8C1;
    line-height: 1.6;
    word-break: keep-all;
}

/* 공유 버튼 */
.bmti-share-section {
    margin-bottom: 28px;
}

.bmti-share-title {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-align: center;
}

.bmti-share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.bmti-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    max-width: 160px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bmti-share-btn:hover {
    transform: translateY(-1px);
}

.bmti-share-btn.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.bmti-share-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: #FFFFFF;
}

.bmti-share-btn.link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

/* 하단 버튼 */
.bmti-bottom-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.bmti-retry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #8B95A1;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.bmti-retry-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

/* ==================== 면책조항 ==================== */
.bmti-disclaimer {
    margin-top: 40px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 12px;
    color: #4E5968;
    line-height: 1.6;
    text-align: center;
}

/* ==================== 토스트 메시지 ==================== */
.bmti-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(28, 105, 212, 0.95);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.bmti-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==================== 반응형 ==================== */
@media (max-width: 480px) {
    .bmti-logo {
        font-size: 52px;
    }

    .bmti-landing-subtitle {
        font-size: 20px;
    }

    .bmti-question-text {
        font-size: 18px;
    }

    .bmti-likert-dots {
        gap: 8px;
    }

    .bmti-likert-dot[data-value="1"],
    .bmti-likert-dot[data-value="7"] {
        width: 42px;
        height: 42px;
    }

    .bmti-likert-dot[data-value="2"],
    .bmti-likert-dot[data-value="6"] {
        width: 36px;
        height: 36px;
    }

    .bmti-likert-dot[data-value="3"],
    .bmti-likert-dot[data-value="5"] {
        width: 32px;
        height: 32px;
    }

    .bmti-likert-dot[data-value="4"] {
        width: 26px;
        height: 26px;
    }

    .bmti-result-typename {
        font-size: 26px;
    }

    .bmti-result-badge {
        font-size: 16px;
    }

    .bmti-car-card-lease {
        font-size: 20px;
    }

    .bmti-checker-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .bmti-checker-grid-btn {
        font-size: 11px;
        padding: 6px 2px;
    }

    .bmti-share-buttons {
        flex-direction: column;
    }

    .bmti-share-btn {
        max-width: 100%;
    }
}

/* 태블릿에서 카드 가로 배열 */
@media (min-width: 520px) {
    .bmti-car-cards {
        flex-direction: row;
    }

    .bmti-car-card {
        flex: 1;
    }
}
