/**
 * 마이페이지 대시보드 스타일
 *
 * @package Terra_TossPay
 */

/* === 대시보드 본문 텍스트 === */
.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.woocommerce-account .woocommerce-MyAccount-content strong {
    color: #0064FF;
    font-weight: 600;
}

/* === 대시보드 링크 === */
.woocommerce-account .woocommerce-MyAccount-content a {
    color: #0064FF;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* === 대시보드 퀵 액션 그리드 (커스텀) === */
.dashboard-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.dashboard-quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.dashboard-quick-action:hover {
    background: #e8f4fd;
    transform: translateY(-2px);
    text-decoration: none;
}

.dashboard-quick-action-icon {
    width: 48px;
    height: 48px;
    background: #0064FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-quick-action-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.dashboard-quick-action-text {
    flex: 1;
}

.dashboard-quick-action-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dashboard-quick-action-desc {
    font-size: 13px;
    color: #666;
}

/* === 반응형: 모바일 === */
@media (max-width: 600px) {
    .woocommerce-account .woocommerce-MyAccount-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .dashboard-quick-actions {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .dashboard-quick-action {
        padding: 16px;
        border-radius: 10px;
    }

    .dashboard-quick-action-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .dashboard-quick-action-icon svg {
        width: 22px;
        height: 22px;
    }

    .dashboard-quick-action-title {
        font-size: 14px;
    }

    .dashboard-quick-action-desc {
        font-size: 12px;
    }
}
